home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gcc / gcc258s.zoo / dbxout.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-30  |  75.3 KB  |  2,541 lines

  1. /* Output dbx-format symbol table information from GNU compiler.
  2.    Copyright (C) 1987, 1988, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* Output dbx-format symbol table data.
  22.    This consists of many symbol table entries, each of them
  23.    a .stabs assembler pseudo-op with four operands:
  24.    a "name" which is really a description of one symbol and its type,
  25.    a "code", which is a symbol defined in stab.h whose name starts with N_,
  26.    an unused operand always 0,
  27.    and a "value" which is an address or an offset.
  28.    The name is enclosed in doublequote characters.
  29.  
  30.    Each function, variable, typedef, and structure tag
  31.    has a symbol table entry to define it.
  32.    The beginning and end of each level of name scoping within
  33.    a function are also marked by special symbol table entries.
  34.  
  35.    The "name" consists of the symbol name, a colon, a kind-of-symbol letter,
  36.    and a data type number.  The data type number may be followed by
  37.    "=" and a type definition; normally this will happen the first time
  38.    the type number is mentioned.  The type definition may refer to
  39.    other types by number, and those type numbers may be followed
  40.    by "=" and nested definitions.
  41.  
  42.    This can make the "name" quite long.
  43.    When a name is more than 80 characters, we split the .stabs pseudo-op
  44.    into two .stabs pseudo-ops, both sharing the same "code" and "value".
  45.    The first one is marked as continued with a double-backslash at the
  46.    end of its "name".
  47.  
  48.    The kind-of-symbol letter distinguished function names from global
  49.    variables from file-scope variables from parameters from auto
  50.    variables in memory from typedef names from register variables.
  51.    See `dbxout_symbol'.
  52.  
  53.    The "code" is mostly redundant with the kind-of-symbol letter
  54.    that goes in the "name", but not entirely: for symbols located
  55.    in static storage, the "code" says which segment the address is in,
  56.    which controls how it is relocated.
  57.  
  58.    The "value" for a symbol in static storage
  59.    is the core address of the symbol (actually, the assembler
  60.    label for the symbol).  For a symbol located in a stack slot
  61.    it is the stack offset; for one in a register, the register number.
  62.    For a typedef symbol, it is zero.
  63.  
  64.    If DEBUG_SYMS_TEXT is defined, all debugging symbols must be
  65.    output while in the text section.
  66.  
  67.    For more on data type definitions, see `dbxout_type'.  */
  68.  
  69. /* Include these first, because they may define MIN and MAX.  */
  70. #include <stdio.h>
  71. #include <errno.h>
  72.  
  73. #include "config.h"
  74. #include "tree.h"
  75. #include "rtl.h"
  76. #include "flags.h"
  77. #include "regs.h"
  78. #include "insn-config.h"
  79. #include "reload.h"
  80. #include "defaults.h"
  81. #include "output.h" /* ASM_OUTPUT_SOURCE_LINE may refer to sdb functions.  */
  82.  
  83. #ifndef errno
  84. extern int errno;
  85. #endif
  86.  
  87. #ifdef XCOFF_DEBUGGING_INFO
  88. #include "xcoffout.h"
  89. #endif
  90.  
  91. #ifndef ASM_STABS_OP
  92. #define ASM_STABS_OP ".stabs"
  93. #endif
  94.  
  95. #ifndef ASM_STABN_OP
  96. #define ASM_STABN_OP ".stabn"
  97. #endif
  98.  
  99. #ifndef DBX_TYPE_DECL_STABS_CODE
  100. #define DBX_TYPE_DECL_STABS_CODE N_LSYM
  101. #endif
  102.  
  103. #ifndef DBX_STATIC_CONST_VAR_CODE
  104. #define DBX_STATIC_CONST_VAR_CODE N_FUN
  105. #endif
  106.  
  107. #ifndef DBX_REGPARM_STABS_CODE
  108. #define DBX_REGPARM_STABS_CODE N_RSYM
  109. #endif
  110.  
  111. #ifndef DBX_REGPARM_STABS_LETTER
  112. #define DBX_REGPARM_STABS_LETTER 'P'
  113. #endif
  114.  
  115. #ifndef DBX_MEMPARM_STABS_LETTER
  116. #define DBX_MEMPARM_STABS_LETTER 'p'
  117. #endif
  118.  
  119. #ifndef FILE_NAME_JOINER
  120. #define FILE_NAME_JOINER "/"
  121. #endif
  122.  
  123. /* Nonzero means if the type has methods, only output debugging
  124.    information if methods are actually written to the asm file.  */
  125.  
  126. static int flag_minimal_debug = 1;
  127.  
  128. /* Nonzero if we have actually used any of the GDB extensions
  129.    to the debugging format.  The idea is that we use them for the
  130.    first time only if there's a strong reason, but once we have done that,
  131.    we use them whenever convenient.  */
  132.  
  133. static int have_used_extensions = 0;
  134.  
  135. char *getpwd ();
  136.  
  137. /* Typical USG systems don't have stab.h, and they also have
  138.    no use for DBX-format debugging info.  */
  139.  
  140. #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
  141.  
  142. #ifdef DEBUG_SYMS_TEXT
  143. #define FORCE_TEXT text_section ();
  144. #else
  145. #define FORCE_TEXT
  146. #endif
  147.  
  148. #if defined (USG) || defined (NO_STAB_H)
  149. #include "gstab.h"  /* If doing DBX on sysV, use our own stab.h.  */
  150. #else
  151. #include <stab.h>  /* On BSD, use the system's stab.h.  */
  152.  
  153. /* This is a GNU extension we need to reference in this file.  */
  154. #ifndef N_CATCH
  155. #define N_CATCH 0x54
  156. #endif
  157. #endif /* not USG */
  158.  
  159. #ifdef __GNU_STAB__
  160. #define STAB_CODE_TYPE enum __stab_debug_code
  161. #else
  162. #define STAB_CODE_TYPE int
  163. #endif
  164.  
  165. /* 1 if PARM is passed to this function in memory.  */
  166.  
  167. #define PARM_PASSED_IN_MEMORY(PARM) \
  168.  (GET_CODE (DECL_INCOMING_RTL (PARM)) == MEM)
  169.  
  170. /* A C expression for the integer offset value of an automatic variable
  171.    (N_LSYM) having address X (an RTX).  */
  172. #ifndef DEBUGGER_AUTO_OFFSET
  173. #define DEBUGGER_AUTO_OFFSET(X) \
  174.   (GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0)
  175. #endif
  176.  
  177. /* A C expression for the integer offset value of an argument (N_PSYM)
  178.    having address X (an RTX).  The nominal offset is OFFSET.  */
  179. #ifndef DEBUGGER_ARG_OFFSET
  180. #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET)
  181. #endif
  182.  
  183. /* Stream for writing to assembler file.  */
  184.  
  185. static FILE *asmfile;
  186.  
  187. /* Last source file name mentioned in a NOTE insn.  */
  188.  
  189. static char *lastfile;
  190.  
  191. /* Current working directory.  */
  192.  
  193. static char *cwd;
  194.  
  195. enum typestatus {TYPE_UNSEEN, TYPE_XREF, TYPE_DEFINED};
  196.  
  197. /* Vector recording the status of describing C data types.
  198.    When we first notice a data type (a tree node),
  199.    we assign it a number using next_type_number.
  200.    That is its index in this vector.
  201.    The vector element says whether we have yet output
  202.    the definition of the type.  TYPE_XREF says we have
  203.    output it as a cross-reference only.  */
  204.  
  205. enum typestatus *typevec;
  206.  
  207. /* Number of elements of space allocated in `typevec'.  */
  208.  
  209. static int typevec_len;
  210.  
  211. /* In dbx output, each type gets a unique number.
  212.    This is the number for the next type output.
  213.    The number, once assigned, is in the TYPE_SYMTAB_ADDRESS field.  */
  214.  
  215. static int next_type_number;
  216.  
  217. /* In dbx output, we must assign symbol-blocks id numbers
  218.    in the order in which their beginnings are encountered.
  219.    We output debugging info that refers to the beginning and
  220.    end of the ranges of code in each block
  221.    with assembler labels LBBn and LBEn, where n is the block number.
  222.    The labels are generated in final, which assigns numbers to the
  223.    blocks in the same way.  */
  224.  
  225. static int next_block_number;
  226.  
  227. /* These variables are for dbxout_symbol to communicate to
  228.    dbxout_finish_symbol.
  229.    current_sym_code is the symbol-type-code, a symbol N_... define in stab.h.
  230.    current_sym_value and current_sym_addr are two ways to address the
  231.    value to store in the symtab entry.
  232.    current_sym_addr if nonzero represents the value as an rtx.
  233.    If that is zero, current_sym_value is used.  This is used
  234.    when the value is an offset (such as for auto variables,
  235.    register variables and parms).  */
  236.  
  237. static STAB_CODE_TYPE current_sym_code;
  238. static int current_sym_value;
  239. static rtx current_sym_addr;
  240.  
  241. /* Number of chars of symbol-description generated so far for the
  242.    current symbol.  Used by CHARS and CONTIN.  */
  243.  
  244. static int current_sym_nchars;
  245.  
  246. /* Report having output N chars of the current symbol-description.  */
  247.  
  248. #define CHARS(N) (current_sym_nchars += (N))
  249.  
  250. /* Break the current symbol-description, generating a continuation,
  251.    if it has become long.  */
  252.  
  253. #ifndef DBX_CONTIN_LENGTH
  254. #define DBX_CONTIN_LENGTH 80
  255. #endif
  256.  
  257. #if DBX_CONTIN_LENGTH > 0
  258. #define CONTIN  \
  259.   do {if (current_sym_nchars > DBX_CONTIN_LENGTH) dbxout_continue ();} while (0)
  260. #else
  261. #define CONTIN
  262. #endif
  263.  
  264. void dbxout_types ();
  265. void dbxout_args ();
  266. void dbxout_symbol ();
  267. static void dbxout_type_name ();
  268. static void dbxout_type ();
  269. static void dbxout_typedefs ();
  270. static void dbxout_symbol_name ();
  271. static void dbxout_symbol_location ();
  272. static void dbxout_prepare_symbol ();
  273. static void dbxout_finish_symbol ();
  274. static void dbxout_continue ();
  275. static void print_int_cst_octal ();
  276. static void print_octal ();
  277.  
  278. #if 0 /* Not clear we will actually need this.  */
  279.  
  280. /* Return the absolutized filename for the given relative
  281.    filename.  Note that if that filename is already absolute, it may
  282.    still be returned in a modified form because this routine also
  283.    eliminates redundant slashes and single dots and eliminates double
  284.    dots to get a shortest possible filename from the given input
  285.    filename.  The absolutization of relative filenames is made by
  286.    assuming that the given filename is to be taken as relative to
  287.    the first argument (cwd) or to the current directory if cwd is
  288.    NULL.  */
  289.  
  290. static char *
  291. abspath (rel_filename)
  292.      char *rel_filename;
  293. {
  294.   /* Setup the current working directory as needed.  */
  295.   char *abs_buffer
  296.     = (char *) alloca (strlen (cwd) + strlen (rel_filename) + 1);
  297.   char *endp = abs_buffer;
  298.   char *outp, *inp;
  299.   char *value;
  300.  
  301.   /* Copy the filename (possibly preceded by the current working
  302.      directory name) into the absolutization buffer.  */
  303.  
  304.   {
  305.     char *src_p;
  306.  
  307.     if (rel_filename[0] != '/')
  308.       {
  309.         src_p = cwd;
  310.         while (*endp++ = *src_p++)
  311.           continue;
  312.         *(endp-1) = '/';                /* overwrite null */
  313.       }
  314.     src_p = rel_filename;
  315.     while (*endp++ = *src_p++)
  316.       continue;
  317.     if (endp[-1] == '/')
  318.       *endp = '\0';
  319.  
  320.   /* Now make a copy of abs_buffer into abs_buffer, shortening the
  321.      filename (by taking out slashes and dots) as we go.  */
  322.  
  323.   outp = inp = abs_buffer;
  324.   *outp++ = *inp++;            /* copy first slash */
  325.   for (;;)
  326.     {
  327.       if (!inp[0])
  328.         break;
  329.       else if (inp[0] == '/' && outp[-1] == '/')
  330.         {
  331.           inp++;
  332.           continue;
  333.         }
  334.       else if (inp[0] == '.' && outp[-1] == '/')
  335.         {
  336.           if (!inp[1])
  337.                   break;
  338.           else if (inp[1] == '/')
  339.             {
  340.                     inp += 2;
  341.                     continue;
  342.             }
  343.           else if ((inp[1] == '.') && (inp[2] == 0 || inp[2] == '/'))
  344.             {
  345.                     inp += (inp[2] == '/') ? 3 : 2;
  346.                     outp -= 2;
  347.                     while (outp >= abs_buffer && *outp != '/')
  348.                   outp--;
  349.                     if (outp < abs_buffer)
  350.                 {
  351.                   /* Catch cases like /.. where we try to backup to a
  352.                      point above the absolute root of the logical file
  353.                      system.  */
  354.  
  355.                     fprintf (stderr, "%s: invalid file name: %s\n",
  356.                pname, rel_filename);
  357.                     exit (1);
  358.                   }
  359.                     *++outp = '\0';
  360.                     continue;
  361.             }
  362.         }
  363.       *outp++ = *inp++;
  364.     }
  365.  
  366.   /* On exit, make sure that there is a trailing null, and make sure that
  367.      the last character of the returned string is *not* a slash.  */
  368.  
  369.   *outp = '\0';
  370.   if (outp[-1] == '/')
  371.     *--outp  = '\0';
  372.  
  373.   /* Make a copy (in the heap) of the stuff left in the absolutization
  374.      buffer and return a pointer to the copy.  */
  375.  
  376.   value = (char *) oballoc (strlen (abs_buffer) + 1);
  377.   strcpy (value, abs_buffer);
  378.   return value;
  379. }
  380. #endif /* 0 */
  381.  
  382. /* At the beginning of compilation, start writing the symbol table.
  383.    Initialize `typevec' and output the standard data types of C.  */
  384.  
  385. void
  386. dbxout_init (asm_file, input_file_name, syms)
  387.      FILE *asm_file;
  388.      char *input_file_name;
  389.      tree syms;
  390. {
  391.   char ltext_label_name[100];
  392.  
  393.   asmfile = asm_file;
  394.  
  395.   typevec_len = 100;
  396.   typevec = (enum typestatus *) xmalloc (typevec_len * sizeof typevec[0]);
  397.   bzero (typevec, typevec_len * sizeof typevec[0]);
  398.  
  399.   /* Convert Ltext into the appropriate format for local labels in case
  400.      the system doesn't insert underscores in front of user generated
  401.      labels.  */
  402.   ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0);
  403.  
  404.   /* Put the current working directory in an N_SO symbol.  */
  405. #ifndef DBX_WORKING_DIRECTORY /* Only some versions of DBX want this,
  406.                  but GDB always does.  */
  407.   if (use_gnu_debug_info_extensions)
  408. #endif
  409.     {
  410.       if (!cwd && (cwd = getpwd ()) && (!*cwd || cwd[strlen (cwd) - 1] != '/'))
  411.     {
  412.       char *wdslash = xmalloc (strlen (cwd) + sizeof (FILE_NAME_JOINER));
  413.       sprintf (wdslash, "%s%s", cwd, FILE_NAME_JOINER);
  414.       cwd = wdslash;
  415.     }
  416.       if (cwd)
  417.     {
  418. #ifdef DBX_OUTPUT_MAIN_SOURCE_DIRECTORY
  419.       DBX_OUTPUT_MAIN_SOURCE_DIRECTORY (asmfile, cwd);
  420. #else /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
  421.       fprintf (asmfile, "%s ", ASM_STABS_OP);
  422.       output_quoted_string (asmfile, cwd);
  423.       fprintf (asmfile, ",%d,0,0,%s\n", N_SO, <ext_label_name[1]);
  424. #endif /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
  425.     }
  426.     }
  427.  
  428. #ifdef DBX_OUTPUT_MAIN_SOURCE_FILENAME
  429.   /* This should NOT be DBX_OUTPUT_SOURCE_FILENAME. That
  430.      would give us an N_SOL, and we want an N_SO.  */
  431.   DBX_OUTPUT_MAIN_SOURCE_FILENAME (asmfile, input_file_name);
  432. #else /* no DBX_OUTPUT_MAIN_SOURCE_FILENAME */
  433.   /* We include outputting `Ltext:' here,
  434.      because that gives you a way to override it.  */
  435.   /* Used to put `Ltext:' before the reference, but that loses on sun 4.  */
  436.   fprintf (asmfile, "%s ", ASM_STABS_OP);
  437.   output_quoted_string (asmfile, input_file_name);
  438.   fprintf (asmfile, ",%d,0,0,%s\n", 
  439.        N_SO, <ext_label_name[1]);
  440.   text_section ();
  441.   ASM_OUTPUT_INTERNAL_LABEL (asmfile, "Ltext", 0);
  442. #endif /* no DBX_OUTPUT_MAIN_SOURCE_FILENAME */
  443.  
  444.   /* Possibly output something to inform GDB that this compilation was by
  445.      GCC.  It's easier for GDB to parse it when after the N_SO's.  This
  446.      is used in Solaris 2.  */
  447. #ifdef ASM_IDENTIFY_GCC_AFTER_SOURCE
  448.   ASM_IDENTIFY_GCC_AFTER_SOURCE (asmfile);
  449. #endif
  450.  
  451.   lastfile = input_file_name;
  452.  
  453.   next_type_number = 1;
  454.   next_block_number = 2;
  455.  
  456.   /* Make sure that types `int' and `char' have numbers 1 and 2.
  457.      Definitions of other integer types will refer to those numbers.
  458.      (Actually it should no longer matter what their numbers are.
  459.      Also, if any types with tags have been defined, dbxout_symbol
  460.      will output them first, so the numbers won't be 1 and 2.  That
  461.      happens in C++.  So it's a good thing it should no longer matter).  */
  462.  
  463. #ifdef DBX_OUTPUT_STANDARD_TYPES
  464.   DBX_OUTPUT_STANDARD_TYPES (syms);
  465. #else
  466.   dbxout_symbol (TYPE_NAME (integer_type_node), 0);
  467.   dbxout_symbol (TYPE_NAME (char_type_node), 0);
  468. #endif
  469.  
  470.   /* Get all permanent types that have typedef names,
  471.      and output them all, except for those already output.  */
  472.  
  473.   dbxout_typedefs (syms);
  474.  
  475.   /* Make sure that gdb extensions, if desired, are used immediately for C++. */
  476.  
  477.   if (use_gnu_debug_info_extensions
  478.       && strcmp (lang_identify (), "cplusplus") == 0)
  479.     have_used_extensions = 1;
  480. }
  481.  
  482. /* Output any typedef names for types described by TYPE_DECLs in SYMS,
  483.    in the reverse order from that which is found in SYMS.  */
  484.  
  485. static void
  486. dbxout_typedefs (syms)
  487.      tree syms;
  488. {
  489.   if (syms)
  490.     {
  491.       dbxout_typedefs (TREE_CHAIN (syms));
  492.       if (TREE_CODE (syms) == TYPE_DECL)
  493.     {
  494.       tree type = TREE_TYPE (syms);
  495.       if (TYPE_NAME (type)
  496.           && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  497.           && ! TREE_ASM_WRITTEN (TYPE_NAME (type)))
  498.         dbxout_symbol (TYPE_NAME (type), 0);
  499.     }
  500.     }
  501. }
  502.  
  503. /* Output debugging info to FILE to switch to sourcefile FILENAME.  */
  504.  
  505. void
  506. dbxout_source_file (file, filename)
  507.      FILE *file;
  508.      char *filename;
  509. {
  510.   char ltext_label_name[100];
  511.  
  512.   if (filename && (lastfile == 0 || strcmp (filename, lastfile)))
  513.     {
  514. #ifdef DBX_OUTPUT_SOURCE_FILENAME
  515.       DBX_OUTPUT_SOURCE_FILENAME (file, filename);
  516. #else
  517.       ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0);
  518.       fprintf (file, "%s ", ASM_STABS_OP);
  519.       output_quoted_string (file, filename);
  520.       fprintf (file, ",%d,0,0,%s\n", N_SOL, <ext_label_name[1]);
  521. #endif
  522.       lastfile = filename;
  523.     }
  524. }
  525.  
  526. /* Output a line number symbol entry into output stream FILE, 
  527.    for source file FILENAME and line number LINENO.  */
  528.  
  529. void
  530. dbxout_source_line (file, filename, lineno)
  531.      FILE *file;
  532.      char *filename;
  533.      int lineno;
  534. {
  535.   dbxout_source_file (file, filename);
  536.  
  537. #ifdef ASM_OUTPUT_SOURCE_LINE
  538.   ASM_OUTPUT_SOURCE_LINE (file, lineno);
  539. #else
  540.   fprintf (file, "\t%s %d,0,%d\n", ASM_STABD_OP, N_SLINE, lineno);
  541. #endif
  542. }
  543.  
  544. /* At the end of compilation, finish writing the symbol table.
  545.    Unless you define DBX_OUTPUT_MAIN_SOURCE_FILE_END, the default is
  546.    to do nothing. */
  547.  
  548. void
  549. dbxout_finish (file, filename)
  550.      FILE *file;
  551.      char *filename;
  552. {
  553. #ifdef DBX_OUTPUT_MAIN_SOURCE_FILE_END
  554.   DBX_OUTPUT_MAIN_SOURCE_FILE_END (file, filename);
  555. #endif /* DBX_OUTPUT_MAIN_SOURCE_FILE_END */
  556. }
  557.  
  558. /* Continue a symbol-description that gets too big.
  559.    End one symbol table entry with a double-backslash
  560.    and start a new one, eventually producing something like
  561.    .stabs "start......\\",code,0,value
  562.    .stabs "...rest",code,0,value   */
  563.  
  564. static void
  565. dbxout_continue ()
  566. {
  567. #ifdef DBX_CONTIN_CHAR
  568.   fprintf (asmfile, "%c", DBX_CONTIN_CHAR);
  569. #else
  570.   fprintf (asmfile, "\\\\");
  571. #endif
  572.   dbxout_finish_symbol (NULL_TREE);
  573.   fprintf (asmfile, "%s \"", ASM_STABS_OP);
  574.   current_sym_nchars = 0;
  575. }
  576.  
  577. /* Subroutine of `dbxout_type'.  Output the type fields of TYPE.
  578.    This must be a separate function because anonymous unions require
  579.    recursive calls.  */
  580.  
  581. static void
  582. dbxout_type_fields (type)
  583.      tree type;
  584. {
  585.   tree tem;
  586.   /* Output the name, type, position (in bits), size (in bits) of each
  587.      field.  */
  588.   for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
  589.     {
  590.       /* For nameless subunions and subrecords, treat their fields as ours.  */
  591.       if (DECL_NAME (tem) == NULL_TREE
  592.       && (TREE_CODE (TREE_TYPE (tem)) == UNION_TYPE
  593.           || TREE_CODE (TREE_TYPE (tem)) == QUAL_UNION_TYPE
  594.           || TREE_CODE (TREE_TYPE (tem)) == RECORD_TYPE))
  595.     dbxout_type_fields (TREE_TYPE (tem));
  596.       /* Omit here local type decls until we know how to support them.  */
  597.       else if (TREE_CODE (tem) == TYPE_DECL)
  598.     continue;
  599.       /* Omit fields whose position or size are variable.  */
  600.       else if (TREE_CODE (tem) == FIELD_DECL
  601.            && (TREE_CODE (DECL_FIELD_BITPOS (tem)) != INTEGER_CST
  602.            || TREE_CODE (DECL_SIZE (tem)) != INTEGER_CST))
  603.     continue;
  604.       /* Omit here the nameless fields that are used to skip bits.  */
  605.       else if (DECL_NAME (tem) != 0 && TREE_CODE (tem) != CONST_DECL)
  606.     {
  607.       /* Continue the line if necessary,
  608.          but not before the first field.  */
  609.       if (tem != TYPE_FIELDS (type))
  610.         CONTIN;
  611.  
  612.       if (use_gnu_debug_info_extensions
  613.           && flag_minimal_debug
  614.           && TREE_CODE (tem) == FIELD_DECL
  615.           && DECL_VIRTUAL_P (tem)
  616.           && DECL_ASSEMBLER_NAME (tem))
  617.         {
  618.           have_used_extensions = 1;
  619.           CHARS (3 + IDENTIFIER_LENGTH (DECL_NAME (TYPE_NAME (DECL_FCONTEXT (tem)))));
  620.           fputs (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (tem)), asmfile);
  621.           dbxout_type (DECL_FCONTEXT (tem), 0, 0);
  622.           fprintf (asmfile, ":");
  623.           dbxout_type (TREE_TYPE (tem), 0, 0);
  624.           fprintf (asmfile, ",%d;",
  625.                TREE_INT_CST_LOW (DECL_FIELD_BITPOS (tem)));
  626.           continue;
  627.         }
  628.  
  629.       fprintf (asmfile, "%s:", IDENTIFIER_POINTER (DECL_NAME (tem)));
  630.       CHARS (2 + IDENTIFIER_LENGTH (DECL_NAME (tem)));
  631.  
  632.       if (use_gnu_debug_info_extensions
  633.           && (TREE_PRIVATE (tem) || TREE_PROTECTED (tem)
  634.           || TREE_CODE (tem) != FIELD_DECL))
  635.         {
  636.           have_used_extensions = 1;
  637.           putc ('/', asmfile);
  638.           putc ((TREE_PRIVATE (tem) ? '0'
  639.              : TREE_PROTECTED (tem) ? '1' : '2'),
  640.             asmfile);
  641.           CHARS (2);
  642.         }
  643.  
  644.       dbxout_type ((TREE_CODE (tem) == FIELD_DECL
  645.             && DECL_BIT_FIELD_TYPE (tem))
  646.                ? DECL_BIT_FIELD_TYPE (tem)
  647.                : TREE_TYPE (tem), 0, 0);
  648.  
  649.       if (TREE_CODE (tem) == VAR_DECL)
  650.         {
  651.           if (TREE_STATIC (tem) && use_gnu_debug_info_extensions)
  652.         {
  653.           char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (tem));
  654.           have_used_extensions = 1;
  655.           fprintf (asmfile, ":%s;", name);
  656.           CHARS (strlen (name));
  657.         }
  658.           else
  659.         {
  660.           /* If TEM is non-static, GDB won't understand it.  */
  661.           fprintf (asmfile, ",0,0;");
  662.         }
  663.         }
  664.       else if (TREE_CODE (DECL_FIELD_BITPOS (tem)) == INTEGER_CST)
  665.         {
  666.           fprintf (asmfile, ",%d,%d;",
  667.                TREE_INT_CST_LOW (DECL_FIELD_BITPOS (tem)),
  668.                TREE_INT_CST_LOW (DECL_SIZE (tem)));
  669.         }
  670.       CHARS (23);
  671.     }
  672.     }
  673. }
  674.  
  675. /* Subroutine of `dbxout_type_methods'.  Output debug info about the
  676.    method described DECL.  DEBUG_NAME is an encoding of the method's
  677.    type signature.  ??? We may be able to do without DEBUG_NAME altogether
  678.    now.  */
  679.  
  680. static void
  681. dbxout_type_method_1 (decl, debug_name)
  682.      tree decl;
  683.      char *debug_name;
  684. {
  685.   tree firstarg = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)));
  686.   char c1 = 'A', c2;
  687.  
  688.   if (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE)
  689.     c2 = '?';
  690.   else /* it's a METHOD_TYPE.  */
  691.     {
  692.       /* A for normal functions.
  693.      B for `const' member functions.
  694.      C for `volatile' member functions.
  695.      D for `const volatile' member functions.  */
  696.       if (TYPE_READONLY (TREE_TYPE (firstarg)))
  697.     c1 += 1;
  698.       if (TYPE_VOLATILE (TREE_TYPE (firstarg)))
  699.     c1 += 2;
  700.  
  701.       if (DECL_VINDEX (decl))
  702.     c2 = '*';
  703.       else
  704.     c2 = '.';
  705.     }
  706.  
  707.   fprintf (asmfile, ":%s;%c%c%c", debug_name,
  708.        TREE_PRIVATE (decl) ? '0' : TREE_PROTECTED (decl) ? '1' : '2', c1, c2);
  709.   CHARS (IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (decl)) + 6
  710.      - (debug_name - IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl))));
  711.   if (DECL_VINDEX (decl))
  712.     {
  713.       fprintf (asmfile, "%d;",
  714.            TREE_INT_CST_LOW (DECL_VINDEX (decl)));
  715.       dbxout_type (DECL_CONTEXT (decl), 0, 0);
  716.       fprintf (asmfile, ";");
  717.       CHARS (8);
  718.     }
  719. }
  720.  
  721. /* Subroutine of `dbxout_type'.  Output debug info about the methods defined
  722.    in TYPE.  */
  723.  
  724. static void
  725. dbxout_type_methods (type)
  726.      register tree type;
  727. {
  728.   /* C++: put out the method names and their parameter lists */
  729.   tree methods = TYPE_METHODS (type);
  730.   tree type_encoding;
  731.   register tree fndecl;
  732.   register tree last;
  733.   char formatted_type_identifier_length[16];
  734.   register int type_identifier_length;
  735.  
  736.   if (methods == NULL_TREE)
  737.     return;
  738.  
  739.   type_encoding = DECL_NAME (TYPE_NAME (type));
  740.  
  741.   /* C++: Template classes break some assumptions made by this code about
  742.      the class names, constructor names, and encodings for assembler
  743.      label names.  For now, disable output of dbx info for them.  */
  744.   {
  745.     char *ptr = IDENTIFIER_POINTER (type_encoding);
  746.     /* This should use index.  (mrs) */
  747.     while (*ptr && *ptr != '<') ptr++;
  748.     if (*ptr != 0)
  749.       {
  750.     static int warned;
  751.     if (!warned)
  752.       {
  753.         warned = 1;
  754. #ifdef HAVE_TEMPLATES
  755.         if (warn_template_debugging)
  756.           warning ("dbx info for template class methods not yet supported");
  757. #endif
  758.       }
  759.     return;
  760.       }
  761.   }
  762.  
  763.   type_identifier_length = IDENTIFIER_LENGTH (type_encoding);
  764.  
  765.   sprintf(formatted_type_identifier_length, "%d", type_identifier_length);
  766.  
  767.   if (TREE_CODE (methods) == FUNCTION_DECL)
  768.     fndecl = methods;
  769.   else if (TREE_VEC_ELT (methods, 0) != NULL_TREE)
  770.     fndecl = TREE_VEC_ELT (methods, 0);
  771.   else
  772.     fndecl = TREE_VEC_ELT (methods, 1);
  773.  
  774.   while (fndecl)
  775.     {
  776.       tree name = DECL_NAME (fndecl);
  777.       int need_prefix = 1;
  778.  
  779.       /* Group together all the methods for the same operation.
  780.      These differ in the types of the arguments.  */
  781.       for (last = NULL_TREE;
  782.        fndecl && (last == NULL_TREE || DECL_NAME (fndecl) == DECL_NAME (last));
  783.        fndecl = TREE_CHAIN (fndecl))
  784.     /* Output the name of the field (after overloading), as
  785.        well as the name of the field before overloading, along
  786.        with its parameter list */
  787.     {
  788.       /* This is the "mangled" name of the method.
  789.          It encodes the argument types.  */
  790.       char *debug_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fndecl));
  791.       int destructor = 0;
  792.  
  793.       CONTIN;
  794.  
  795.       last = fndecl;
  796.  
  797.       if (DECL_IGNORED_P (fndecl))
  798.         continue;
  799.  
  800.       if (flag_minimal_debug)
  801.         {
  802.           /* Detect ordinary methods because their mangled names
  803.          start with the operation name.  */
  804.           if (!strncmp (IDENTIFIER_POINTER (name), debug_name,
  805.                 IDENTIFIER_LENGTH (name)))
  806.         {
  807.           debug_name += IDENTIFIER_LENGTH (name);
  808.           if (debug_name[0] == '_' && debug_name[1] == '_')
  809.             {
  810.               char *method_name = debug_name + 2;
  811.               char *length_ptr = formatted_type_identifier_length;
  812.               /* Get past const and volatile qualifiers.  */
  813.               while (*method_name == 'C' || *method_name == 'V')
  814.             method_name++;
  815.               /* Skip digits for length of type_encoding. */
  816.               while (*method_name == *length_ptr && *length_ptr)
  817.               length_ptr++, method_name++;
  818.               if (! strncmp (method_name,
  819.                      IDENTIFIER_POINTER (type_encoding),
  820.                      type_identifier_length))
  821.             method_name += type_identifier_length;
  822.               debug_name = method_name;
  823.             }
  824.         }
  825.           /* Detect constructors by their style of name mangling.  */
  826.           else if (debug_name[0] == '_' && debug_name[1] == '_')
  827.         {
  828.           char *ctor_name = debug_name + 2;
  829.           char *length_ptr = formatted_type_identifier_length;
  830.           while (*ctor_name == 'C' || *ctor_name == 'V')
  831.             ctor_name++;
  832.           /* Skip digits for length of type_encoding. */
  833.           while (*ctor_name == *length_ptr && *length_ptr)
  834.               length_ptr++, ctor_name++;
  835.           if (!strncmp (IDENTIFIER_POINTER (type_encoding), ctor_name,
  836.                 type_identifier_length))
  837.             debug_name = ctor_name + type_identifier_length;
  838.         }
  839.           /* The other alternative is a destructor.  */
  840.           else
  841.         destructor = 1;
  842.  
  843.           /* Output the operation name just once, for the first method
  844.          that we output.  */
  845.           if (need_prefix)
  846.         {
  847.           fprintf (asmfile, "%s::", IDENTIFIER_POINTER (name));
  848.           CHARS (IDENTIFIER_LENGTH (name) + 2);
  849.           need_prefix = 0;
  850.         }
  851.         }
  852.  
  853.       dbxout_type (TREE_TYPE (fndecl), 0, destructor);
  854.  
  855.       dbxout_type_method_1 (fndecl, debug_name);
  856.     }
  857.       if (!need_prefix)
  858.     {
  859.           putc (';', asmfile);
  860.       CHARS (1);
  861.     }
  862.     }
  863. }
  864.  
  865. /* Emit a "range" type specification, which has the form:
  866.    "r<index type>;<lower bound>;<upper bound>;".
  867.    TYPE is an INTEGER_TYPE. */
  868.  
  869. static void
  870. dbxout_range_type (type)
  871.      tree type;
  872. {
  873.   fprintf (asmfile, "r");
  874.   if (TREE_TYPE (type) && TREE_CODE (TREE_TYPE(type)) != INTEGER_TYPE)
  875.     dbxout_type (TREE_TYPE (type), 0, 0);
  876.   else
  877.     {
  878.       /* This used to say `r1' and we used to take care
  879.      to make sure that `int' was type number 1.  */
  880.       fprintf (asmfile, "%d", TYPE_SYMTAB_ADDRESS (integer_type_node));
  881.     }
  882.   if (TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
  883.     fprintf (asmfile, ";%d", 
  884.          TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)));
  885.   else
  886.     fprintf (asmfile, ";0");
  887.   if (TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
  888.     fprintf (asmfile, ";%d;", 
  889.          TREE_INT_CST_LOW (TYPE_MAX_VALUE (type)));
  890.   else
  891.     fprintf (asmfile, ";-1;");
  892. }
  893.  
  894. /* Output a reference to a type.  If the type has not yet been
  895.    described in the dbx output, output its definition now.
  896.    For a type already defined, just refer to its definition
  897.    using the type number.
  898.  
  899.    If FULL is nonzero, and the type has been described only with
  900.    a forward-reference, output the definition now.
  901.    If FULL is zero in this case, just refer to the forward-reference
  902.    using the number previously allocated.
  903.  
  904.    If SHOW_ARG_TYPES is nonzero, we output a description of the argument
  905.    types for a METHOD_TYPE.  */
  906.  
  907. static void
  908. dbxout_type (type, full, show_arg_types)
  909.      tree type;
  910.      int full;
  911.      int show_arg_types;
  912. {
  913.   register tree tem;
  914.   static int anonymous_type_number = 0;
  915.  
  916.   /* If there was an input error and we don't really have a type,
  917.      avoid crashing and write something that is at least valid
  918.      by assuming `int'.  */
  919.   if (type == error_mark_node)
  920.     type = integer_type_node;
  921.   else
  922.     {
  923.       type = TYPE_MAIN_VARIANT (type);
  924.       if (TYPE_NAME (type)
  925.       && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  926.       && DECL_IGNORED_P (TYPE_NAME (type)))
  927.     full = 0;
  928.     }
  929.  
  930.   if (TYPE_SYMTAB_ADDRESS (type) == 0)
  931.     {
  932.       /* Type has no dbx number assigned.  Assign next available number.  */
  933.       TYPE_SYMTAB_ADDRESS (type) = next_type_number++;
  934.  
  935.       /* Make sure type vector is long enough to record about this type.  */
  936.  
  937.       if (next_type_number == typevec_len)
  938.     {
  939.       typevec = (enum typestatus *) xrealloc (typevec, typevec_len * 2 * sizeof typevec[0]);
  940.       bzero (typevec + typevec_len, typevec_len * sizeof typevec[0]);
  941.       typevec_len *= 2;
  942.     }
  943.     }
  944.  
  945.   /* Output the number of this type, to refer to it.  */
  946.   fprintf (asmfile, "%d", TYPE_SYMTAB_ADDRESS (type));
  947.   CHARS (3);
  948.  
  949. #ifdef DBX_TYPE_DEFINED
  950.   if (DBX_TYPE_DEFINED (type))
  951.     return;
  952. #endif
  953.  
  954.   /* If this type's definition has been output or is now being output,
  955.      that is all.  */
  956.  
  957.   switch (typevec[TYPE_SYMTAB_ADDRESS (type)])
  958.     {
  959.     case TYPE_UNSEEN:
  960.       break;
  961.     case TYPE_XREF:
  962.       /* If we have already had a cross reference,
  963.      and either that's all we want or that's the best we could do,
  964.      don't repeat the cross reference.
  965.      Sun dbx crashes if we do.  */
  966.       if (! full || TYPE_SIZE (type) == 0
  967.       /* No way in DBX fmt to describe a variable size.  */
  968.       || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
  969.     return;
  970.       break;
  971.     case TYPE_DEFINED:
  972.       return;
  973.     }
  974.  
  975. #ifdef DBX_NO_XREFS
  976.   /* For systems where dbx output does not allow the `=xsNAME:' syntax,
  977.      leave the type-number completely undefined rather than output
  978.      a cross-reference.  */
  979.   if (TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
  980.       || TREE_CODE (type) == QUAL_UNION_TYPE
  981.       || TREE_CODE (type) == ENUMERAL_TYPE)
  982.  
  983.     if ((TYPE_NAME (type) != 0 && !full)
  984.     || TYPE_SIZE (type) == 0)
  985.       {
  986.     typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  987.     return;
  988.       }
  989. #endif
  990.  
  991.   /* Output a definition now.  */
  992.  
  993.   fprintf (asmfile, "=");
  994.   CHARS (1);
  995.  
  996.   /* Mark it as defined, so that if it is self-referent
  997.      we will not get into an infinite recursion of definitions.  */
  998.  
  999.   typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_DEFINED;
  1000.  
  1001.   switch (TREE_CODE (type))
  1002.     {
  1003.     case VOID_TYPE:
  1004.     case LANG_TYPE:
  1005.       /* For a void type, just define it as itself; ie, "5=5".
  1006.      This makes us consider it defined
  1007.      without saying what it is.  The debugger will make it
  1008.      a void type when the reference is seen, and nothing will
  1009.      ever override that default.  */
  1010.       fprintf (asmfile, "%d", TYPE_SYMTAB_ADDRESS (type));
  1011.       CHARS (3);
  1012.       break;
  1013.  
  1014.     case INTEGER_TYPE:
  1015.       if (type == char_type_node && ! TREE_UNSIGNED (type))
  1016.     /* Output the type `char' as a subrange of itself!
  1017.        I don't understand this definition, just copied it
  1018.        from the output of pcc.
  1019.        This used to use `r2' explicitly and we used to
  1020.        take care to make sure that `char' was type number 2.  */
  1021.     fprintf (asmfile, "r%d;0;127;", TYPE_SYMTAB_ADDRESS (type));
  1022.       else if (use_gnu_debug_info_extensions
  1023.            && (TYPE_PRECISION (type) > TYPE_PRECISION (integer_type_node)
  1024.            || TYPE_PRECISION (type) > HOST_BITS_PER_WIDE_INT))
  1025.     {
  1026.       /* This used to say `r1' and we used to take care
  1027.          to make sure that `int' was type number 1.  */
  1028.       fprintf (asmfile, "r%d;", TYPE_SYMTAB_ADDRESS (integer_type_node));
  1029.       print_int_cst_octal (TYPE_MIN_VALUE (type));
  1030.       fprintf (asmfile, ";");
  1031.       print_int_cst_octal (TYPE_MAX_VALUE (type));
  1032.       fprintf (asmfile, ";");
  1033.     }
  1034.       else /* Output other integer types as subranges of `int'.  */
  1035.     dbxout_range_type (type);
  1036.       CHARS (25);
  1037.       break;
  1038.  
  1039.     case REAL_TYPE:
  1040.       /* This used to say `r1' and we used to take care
  1041.      to make sure that `int' was type number 1.  */
  1042.       fprintf (asmfile, "r%d;%d;0;", TYPE_SYMTAB_ADDRESS (integer_type_node),
  1043.            int_size_in_bytes (type));
  1044.       CHARS (16);
  1045.       break;
  1046.  
  1047.     case CHAR_TYPE:
  1048.       if (use_gnu_debug_info_extensions)
  1049.     fprintf (asmfile, "@s%d;-20;",
  1050.          BITS_PER_UNIT * int_size_in_bytes (type));
  1051.       else
  1052.     /* Output the type `char' as a subrange of itself.
  1053.        That is what pcc seems to do.  */
  1054.       fprintf (asmfile, "r%d;0;%d;", TYPE_SYMTAB_ADDRESS (char_type_node),
  1055.            TREE_UNSIGNED (type) ? 255 : 127);
  1056.       CHARS (9);
  1057.       break;
  1058.  
  1059.     case BOOLEAN_TYPE:
  1060.       if (use_gnu_debug_info_extensions)
  1061.     fprintf (asmfile, "@s%d;-16;",
  1062.          BITS_PER_UNIT * int_size_in_bytes (type));
  1063.       else /* Define as enumeral type (False, True) */
  1064.     fprintf (asmfile, "eFalse:0,True:1,;");
  1065.       CHARS (17);
  1066.       break;
  1067.  
  1068.     case FILE_TYPE:
  1069.       putc ('d', asmfile);
  1070.       CHARS (1);
  1071.       dbxout_type (TREE_TYPE (type), 0, 0);
  1072.       break;
  1073.  
  1074.     case COMPLEX_TYPE:
  1075.       /* Differs from the REAL_TYPE by its new data type number */
  1076.  
  1077.       if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
  1078.     {
  1079.       fprintf (asmfile, "r%d;%d;0;",
  1080.            TYPE_SYMTAB_ADDRESS (type),
  1081.            int_size_in_bytes (TREE_TYPE (type)));
  1082.       CHARS (15);        /* The number is probably incorrect here.  */
  1083.     }
  1084.       else
  1085.     {
  1086.       /* Output a complex integer type as a structure,
  1087.          pending some other way to do it.  */
  1088.       fprintf (asmfile, "s%d", int_size_in_bytes (type));
  1089.  
  1090.       fprintf (asmfile, "real:");
  1091.       CHARS (10);
  1092.       dbxout_type (TREE_TYPE (type), 0, 0);
  1093.       fprintf (asmfile, ",%d,%d;",
  1094.            0, TYPE_PRECISION (TREE_TYPE (type)));
  1095.       CHARS (8);
  1096.       fprintf (asmfile, "imag:");
  1097.       CHARS (5);
  1098.       dbxout_type (TREE_TYPE (type), 0, 0);
  1099.       fprintf (asmfile, ",%d,%d;;",
  1100.            TYPE_PRECISION (TREE_TYPE (type)),
  1101.            TYPE_PRECISION (TREE_TYPE (type)));
  1102.       CHARS (9);
  1103.     }
  1104.       break;
  1105.  
  1106.     case SET_TYPE:
  1107.       putc ('S', asmfile);
  1108.       CHARS (1);
  1109.       dbxout_type (TYPE_DOMAIN (type), 0, 0);
  1110.       break;
  1111.  
  1112.     case ARRAY_TYPE:
  1113.       /* Output "a" followed by a range type definition
  1114.      for the index type of the array
  1115.      followed by a reference to the target-type.
  1116.      ar1;0;N;M for a C array of type M and size N+1.  */
  1117.       tem = TYPE_DOMAIN (type);
  1118.       if (tem == NULL)
  1119.     fprintf (asmfile, "ar%d;0;-1;",
  1120.          TYPE_SYMTAB_ADDRESS (integer_type_node));
  1121.       else
  1122.     {
  1123.       fprintf (asmfile, "a");
  1124.       dbxout_range_type (tem);
  1125.     }
  1126.       CHARS (17);
  1127.       dbxout_type (TREE_TYPE (type), 0, 0);
  1128.       break;
  1129.  
  1130.     case RECORD_TYPE:
  1131.     case UNION_TYPE:
  1132.     case QUAL_UNION_TYPE:
  1133.       {
  1134.     int i, n_baseclasses = 0;
  1135.  
  1136.     if (TYPE_BINFO (type) != 0 && TYPE_BINFO_BASETYPES (type) != 0)
  1137.       n_baseclasses = TREE_VEC_LENGTH (TYPE_BINFO_BASETYPES (type));
  1138.  
  1139.     /* Output a structure type.  */
  1140.     if ((TYPE_NAME (type) != 0
  1141.          /* Long ago, Tiemann said this creates output that "confuses GDB".
  1142.         In April 93, mrs@cygnus.com said there is no such problem.
  1143.         The type decls made automatically by struct specifiers
  1144.         are marked with DECL_IGNORED_P in C++.  */
  1145. #if 0 /* This creates output for anonymous classes which confuses GDB. */
  1146.          && ! (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  1147.            && DECL_IGNORED_P (TYPE_NAME (type)))
  1148. #endif
  1149.          && !full)
  1150.         || TYPE_SIZE (type) == 0
  1151.         /* No way in DBX fmt to describe a variable size.  */
  1152.         || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
  1153.       {
  1154.         /* If the type is just a cross reference, output one
  1155.            and mark the type as partially described.
  1156.            If it later becomes defined, we will output
  1157.            its real definition.
  1158.            If the type has a name, don't nest its definition within
  1159.            another type's definition; instead, output an xref
  1160.            and let the definition come when the name is defined.  */
  1161.         fprintf (asmfile, (TREE_CODE (type) == RECORD_TYPE) ? "xs" : "xu");
  1162.         CHARS (3);
  1163. #if 0 /* This assertion is legitimately false in C++.  */
  1164.         /* We shouldn't be outputting a reference to a type before its
  1165.            definition unless the type has a tag name.
  1166.            A typedef name without a tag name should be impossible.  */
  1167.         if (TREE_CODE (TYPE_NAME (type)) != IDENTIFIER_NODE)
  1168.           abort ();
  1169. #endif
  1170.         if (TYPE_NAME (type) != 0)
  1171.           dbxout_type_name (type);
  1172.         else
  1173.           fprintf (asmfile, "$$%d", anonymous_type_number++);
  1174.         fprintf (asmfile, ":");
  1175.         typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  1176.         break;
  1177.       }
  1178.  
  1179.     /* Identify record or union, and print its size.  */
  1180.     fprintf (asmfile, (TREE_CODE (type) == RECORD_TYPE) ? "s%d" : "u%d",
  1181.          int_size_in_bytes (type));
  1182.  
  1183.     if (use_gnu_debug_info_extensions)
  1184.       {
  1185.         if (n_baseclasses)
  1186.           {
  1187.         have_used_extensions = 1;
  1188.         fprintf (asmfile, "!%d,", n_baseclasses);
  1189.         CHARS (8);
  1190.           }
  1191.       }
  1192.     for (i = 0; i < n_baseclasses; i++)
  1193.       {
  1194.         tree child = TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO (type)), i);
  1195.         if (use_gnu_debug_info_extensions)
  1196.           {
  1197.         have_used_extensions = 1;
  1198.         putc (TREE_VIA_VIRTUAL (child) ? '1'
  1199.               : '0',
  1200.               asmfile);
  1201.         putc (TREE_VIA_PUBLIC (child) ? '2'
  1202.               : '0',
  1203.               asmfile);
  1204.         fprintf (asmfile, "%d,",
  1205.              TREE_INT_CST_LOW (BINFO_OFFSET (child)) * BITS_PER_UNIT);
  1206.         CHARS (15);
  1207.         dbxout_type (BINFO_TYPE (child), 0, 0);
  1208.         putc (';', asmfile);
  1209.           }
  1210.         else
  1211.           {
  1212.         /* Print out the base class information with fields
  1213.            which have the same names at the types they hold.  */
  1214.         dbxout_type_name (BINFO_TYPE (child));
  1215.         putc (':', asmfile);
  1216.         dbxout_type (BINFO_TYPE (child), full, 0);
  1217.         fprintf (asmfile, ",%d,%d;",
  1218.              TREE_INT_CST_LOW (BINFO_OFFSET (child)) * BITS_PER_UNIT,
  1219.              TREE_INT_CST_LOW (DECL_SIZE (TYPE_NAME (BINFO_TYPE (child)))) * BITS_PER_UNIT);
  1220.         CHARS (20);
  1221.           }
  1222.       }
  1223.       }
  1224.  
  1225.       CHARS (11);
  1226.  
  1227.       /* Write out the field declarations.  */
  1228.       dbxout_type_fields (type);
  1229.       if (use_gnu_debug_info_extensions && TYPE_METHODS (type) != NULL_TREE)
  1230.     {
  1231.       have_used_extensions = 1;
  1232.       dbxout_type_methods (type);
  1233.     }
  1234.       putc (';', asmfile);
  1235.  
  1236.       if (use_gnu_debug_info_extensions && TREE_CODE (type) == RECORD_TYPE
  1237.       /* Avoid the ~ if we don't really need it--it confuses dbx.  */
  1238.       && TYPE_VFIELD (type))
  1239.     {
  1240.       have_used_extensions = 1;
  1241.  
  1242.       /* Tell GDB+ that it may keep reading.  */
  1243.       putc ('~', asmfile);
  1244.  
  1245.       /* We need to write out info about what field this class
  1246.          uses as its "main" vtable pointer field, because if this
  1247.          field is inherited from a base class, GDB cannot necessarily
  1248.          figure out which field it's using in time.  */
  1249.       if (TYPE_VFIELD (type))
  1250.         {
  1251.           putc ('%', asmfile);
  1252.           dbxout_type (DECL_FCONTEXT (TYPE_VFIELD (type)), 0, 0);
  1253.         }
  1254.       putc (';', asmfile);
  1255.       CHARS (3);
  1256.     }
  1257.       break;
  1258.  
  1259.     case ENUMERAL_TYPE:
  1260.       if ((TYPE_NAME (type) != 0 && !full
  1261.        && (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
  1262.            && ! DECL_IGNORED_P (TYPE_NAME (type))))
  1263.       || TYPE_SIZE (type) == 0)
  1264.     {
  1265.       fprintf (asmfile, "xe");
  1266.       CHARS (3);
  1267.       dbxout_type_name (type);
  1268.       typevec[TYPE_SYMTAB_ADDRESS (type)] = TYPE_XREF;
  1269.       fprintf (asmfile, ":");
  1270.       return;
  1271.     }
  1272. #ifdef DBX_OUTPUT_ENUM
  1273.       DBX_OUTPUT_ENUM (asmfile, type);
  1274. #else
  1275.       putc ('e', asmfile);
  1276.       CHARS (1);
  1277.       for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem))
  1278.     {
  1279.       fprintf (asmfile, "%s:", IDENTIFIER_POINTER (TREE_PURPOSE (tem)));
  1280.       if (TREE_INT_CST_HIGH (TREE_VALUE (tem)) == 0)
  1281.         fprintf (asmfile, "%lu",
  1282.              (unsigned long) TREE_INT_CST_LOW (TREE_VALUE (tem)));
  1283.       else if (TREE_INT_CST_HIGH (TREE_VALUE (tem)) == -1
  1284.            && TREE_INT_CST_LOW (TREE_VALUE (tem)) < 0)
  1285.         fprintf (asmfile, "%ld",
  1286.              (long) TREE_INT_CST_LOW (TREE_VALUE (tem)));
  1287.       else
  1288.         print_int_cst_octal (TREE_VALUE (tem));
  1289.       fprintf (asmfile, ",");
  1290.       CHARS (20 + IDENTIFIER_LENGTH (TREE_PURPOSE (tem)));
  1291.       if (TREE_CHAIN (tem) != 0)
  1292.         CONTIN;
  1293.     }
  1294.       putc (';', asmfile);
  1295.       CHARS (1);
  1296. #endif
  1297.       break;
  1298.  
  1299.     case POINTER_TYPE:
  1300.       putc ('*', asmfile);
  1301.       CHARS (1);
  1302.       dbxout_type (TREE_TYPE (type), 0, 0);
  1303.       break;
  1304.  
  1305.     case METHOD_TYPE:
  1306.       if (use_gnu_debug_info_extensions)
  1307.     {
  1308.       have_used_extensions = 1;
  1309.       putc ('#', asmfile);
  1310.       CHARS (1);
  1311.       if (flag_minimal_debug && !show_arg_types)
  1312.         {
  1313.           /* Normally, just output the return type.
  1314.          The argument types are encoded in the method name.  */
  1315.           putc ('#', asmfile);
  1316.           dbxout_type (TREE_TYPE (type), 0, 0);
  1317.           putc (';', asmfile);
  1318.           CHARS (1);
  1319.         }
  1320.       else
  1321.         {
  1322.           /* When outputting destructors, we need to write
  1323.          the argument types out longhand.  */
  1324.           dbxout_type (TYPE_METHOD_BASETYPE (type), 0, 0);
  1325.           putc (',', asmfile);
  1326.           CHARS (1);
  1327.           dbxout_type (TREE_TYPE (type), 0, 0);
  1328.           dbxout_args (TYPE_ARG_TYPES (type));
  1329.           putc (';', asmfile);
  1330.           CHARS (1);
  1331.         }
  1332.     }
  1333.       else
  1334.     {
  1335.       /* Treat it as a function type.  */
  1336.       dbxout_type (TREE_TYPE (type), 0, 0);
  1337.     }
  1338.       break;
  1339.  
  1340.     case OFFSET_TYPE:
  1341.       if (use_gnu_debug_info_extensions)
  1342.     {
  1343.       have_used_extensions = 1;
  1344.       putc ('@', asmfile);
  1345.       CHARS (1);
  1346.       dbxout_type (TYPE_OFFSET_BASETYPE (type), 0, 0);
  1347.       putc (',', asmfile);
  1348.       CHARS (1);
  1349.       dbxout_type (TREE_TYPE (type), 0, 0);
  1350.     }
  1351.       else
  1352.     {
  1353.       /* Should print as an int, because it is really
  1354.          just an offset.  */
  1355.       dbxout_type (integer_type_node, 0, 0);
  1356.     }
  1357.       break;
  1358.  
  1359.     case REFERENCE_TYPE:
  1360.       if (use_gnu_debug_info_extensions)
  1361.     have_used_extensions = 1;
  1362.       putc (use_gnu_debug_info_extensions ? '&' : '*', asmfile);
  1363.       CHARS (1);
  1364.       dbxout_type (TREE_TYPE (type), 0, 0);
  1365.       break;
  1366.  
  1367.     case FUNCTION_TYPE:
  1368.       putc ('f', asmfile);
  1369.       CHARS (1);
  1370.       dbxout_type (TREE_TYPE (type), 0, 0);
  1371.       break;
  1372.  
  1373.     default:
  1374.       abort ();
  1375.     }
  1376. }
  1377.  
  1378. /* Print the value of integer constant C, in octal,
  1379.    handling double precision.  */
  1380.  
  1381. static void
  1382. print_int_cst_octal (c)
  1383.      tree c;
  1384. {
  1385.   unsigned HOST_WIDE_INT high = TREE_INT_CST_HIGH (c);
  1386.   unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (c);
  1387.   int excess = (3 - (HOST_BITS_PER_WIDE_INT % 3));
  1388.   int width = TYPE_PRECISION (TREE_TYPE (c));
  1389.  
  1390.   /* GDB wants constants with no extra leading "1" bits, so
  1391.      we need to remove any sign-extension that might be
  1392.      present.  */
  1393.   if (width == HOST_BITS_PER_WIDE_INT * 2)
  1394.     ;
  1395.   else if (width > HOST_BITS_PER_WIDE_INT)
  1396.     high &= (((HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT)) - 1);
  1397.   else if (width == HOST_BITS_PER_WIDE_INT)
  1398.     high = 0;
  1399.   else
  1400.     high = 0, low &= (((HOST_WIDE_INT) 1 << width) - 1);
  1401.  
  1402.   fprintf (asmfile, "0");
  1403.  
  1404.   if (excess == 3)
  1405.     {
  1406.       print_octal (high, HOST_BITS_PER_WIDE_INT / 3);
  1407.       print_octal (low, HOST_BITS_PER_WIDE_INT / 3);
  1408.     }
  1409.   else
  1410.     {
  1411.       unsigned HOST_WIDE_INT beg = high >> excess;
  1412.       unsigned HOST_WIDE_INT middle
  1413.     = ((high & (((HOST_WIDE_INT) 1 << excess) - 1)) << (3 - excess)
  1414.        | (low >> (HOST_BITS_PER_WIDE_INT / 3 * 3)));
  1415.       unsigned HOST_WIDE_INT end
  1416.     = low & (((unsigned HOST_WIDE_INT) 1
  1417.           << (HOST_BITS_PER_WIDE_INT / 3 * 3))
  1418.          - 1);
  1419.  
  1420.       fprintf (asmfile, "%o%01o", beg, middle);
  1421.       print_octal (end, HOST_BITS_PER_WIDE_INT / 3);
  1422.     }
  1423. }
  1424.  
  1425. static void
  1426. print_octal (value, digits)
  1427.      unsigned HOST_WIDE_INT value;
  1428.      int digits;
  1429. {
  1430.   int i;
  1431.  
  1432.   for (i = digits - 1; i >= 0; i--)
  1433.     fprintf (asmfile, "%01o", ((value >> (3 * i)) & 7));
  1434. }
  1435.  
  1436. /* Output the name of type TYPE, with no punctuation.
  1437.    Such names can be set up either by typedef declarations
  1438.    or by struct, enum and union tags.  */
  1439.  
  1440. static void
  1441. dbxout_type_name (type)
  1442.      register tree type;
  1443. {
  1444.   tree t;
  1445.   if (TYPE_NAME (type) == 0)
  1446.     abort ();
  1447.   if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  1448.     {
  1449.       t = TYPE_NAME (type);
  1450.     }
  1451.   else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
  1452.     {
  1453.       t = DECL_NAME (TYPE_NAME (type));
  1454.     }
  1455.   else
  1456.     abort ();
  1457.  
  1458.   fprintf (asmfile, "%s", IDENTIFIER_POINTER (t));
  1459.   CHARS (IDENTIFIER_LENGTH (t));
  1460. }
  1461.  
  1462. /* Output a .stabs for the symbol defined by DECL,
  1463.    which must be a ..._DECL node in the normal namespace.
  1464.    It may be a CONST_DECL, a FUNCTION_DECL, a PARM_DECL or a VAR_DECL.
  1465.    LOCAL is nonzero if the scope is less than the entire file.  */
  1466.  
  1467. void
  1468. dbxout_symbol (decl, local)
  1469.      tree decl;
  1470.      int local;
  1471. {
  1472.   int letter = 0;
  1473.   tree type = TREE_TYPE (decl);
  1474.   tree context = NULL_TREE;
  1475.   int regno = -1;
  1476.  
  1477.   /* Cast avoids warning in old compilers.  */
  1478.   current_sym_code = (STAB_CODE_TYPE) 0;
  1479.   current_sym_value = 0;
  1480.   current_sym_addr = 0;
  1481.  
  1482.   /* Ignore nameless syms, but don't ignore type tags.  */
  1483.  
  1484.   if ((DECL_NAME (decl) == 0 && TREE_CODE (decl) != TYPE_DECL)
  1485.       || DECL_IGNORED_P (decl))
  1486.     return;
  1487.  
  1488.   dbxout_prepare_symbol (decl);
  1489.  
  1490.   /* The output will always start with the symbol name,
  1491.      so always count that in the length-output-so-far.  */
  1492.  
  1493.   if (DECL_NAME (decl) != 0)
  1494.     current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (decl));
  1495.  
  1496.   switch (TREE_CODE (decl))
  1497.     {
  1498.     case CONST_DECL:
  1499.       /* Enum values are defined by defining the enum type.  */
  1500.       break;
  1501.  
  1502.     case FUNCTION_DECL:
  1503.       if (DECL_RTL (decl) == 0)
  1504.     return;
  1505.       if (DECL_EXTERNAL (decl))
  1506.     break;
  1507.       /* Don't mention a nested function under its parent.  */
  1508.       context = decl_function_context (decl);
  1509.       if (context == current_function_decl)
  1510.     break;
  1511.       if (GET_CODE (DECL_RTL (decl)) != MEM
  1512.       || GET_CODE (XEXP (DECL_RTL (decl), 0)) != SYMBOL_REF)
  1513.     break;
  1514.       FORCE_TEXT;
  1515.  
  1516.       fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP,
  1517.            IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
  1518.            TREE_PUBLIC (decl) ? 'F' : 'f');
  1519.  
  1520.       current_sym_code = N_FUN;
  1521.       current_sym_addr = XEXP (DECL_RTL (decl), 0);
  1522.  
  1523.       if (TREE_TYPE (type))
  1524.     dbxout_type (TREE_TYPE (type), 0, 0);
  1525.       else
  1526.     dbxout_type (void_type_node, 0, 0);
  1527.  
  1528.       /* For a nested function, when that function is compiled,
  1529.      mention the containing function name
  1530.      as well as (since dbx wants it) our own assembler-name.  */
  1531.       if (context != 0)
  1532.     fprintf (asmfile, ",%s,%s",
  1533.          IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
  1534.          IDENTIFIER_POINTER (DECL_NAME (context)));
  1535.  
  1536.       dbxout_finish_symbol (decl);
  1537.       break;
  1538.  
  1539.     case TYPE_DECL:
  1540. #if 0
  1541.       /* This seems all wrong.  Outputting most kinds of types gives no name
  1542.      at all.  A true definition gives no name; a cross-ref for a
  1543.      structure can give the tag name, but not a type name.
  1544.      It seems that no typedef name is defined by outputting a type.  */
  1545.  
  1546.       /* If this typedef name was defined by outputting the type,
  1547.      don't duplicate it.  */
  1548.       if (typevec[TYPE_SYMTAB_ADDRESS (type)] == TYPE_DEFINED
  1549.       && TYPE_NAME (TREE_TYPE (decl)) == decl)
  1550.     return;
  1551. #endif
  1552.       /* Don't output the same typedef twice.
  1553.          And don't output what language-specific stuff doesn't want output.  */
  1554.       if (TREE_ASM_WRITTEN (decl) || DECL_IGNORED_P (decl))
  1555.     return;
  1556.  
  1557.       FORCE_TEXT;
  1558.  
  1559.       {
  1560.     int tag_needed = 1;
  1561.     int did_output = 0;
  1562.  
  1563.     if (DECL_NAME (decl))
  1564.       {
  1565.         /* Nonzero means we must output a tag as well as a typedef.  */
  1566.         tag_needed = 0;
  1567.  
  1568.         /* Handle the case of a C++ structure or union
  1569.            where the TYPE_NAME is a TYPE_DECL
  1570.            which gives both a typedef name and a tag.  */
  1571.         /* dbx requires the tag first and the typedef second.  */
  1572.         if ((TREE_CODE (type) == RECORD_TYPE
  1573.          || TREE_CODE (type) == UNION_TYPE
  1574.          || TREE_CODE (type) == QUAL_UNION_TYPE)
  1575.         && TYPE_NAME (type) == decl
  1576.         && !(use_gnu_debug_info_extensions && have_used_extensions)
  1577.         && !TREE_ASM_WRITTEN (TYPE_NAME (type))
  1578.         /* Distinguish the implicit typedefs of C++
  1579.            from explicit ones that might be found in C.  */
  1580.                 && (!strcmp (lang_identify (), "cplusplus") 
  1581.             /* The following line maybe unnecessary;
  1582.                in 2.6, try removing it.  */
  1583.             || DECL_SOURCE_LINE (decl) == 0))
  1584.           {
  1585.         tree name = TYPE_NAME (type);
  1586.         if (TREE_CODE (name) == TYPE_DECL)
  1587.           name = DECL_NAME (name);
  1588.  
  1589.         current_sym_code = DBX_TYPE_DECL_STABS_CODE;
  1590.         current_sym_value = 0;
  1591.         current_sym_addr = 0;
  1592.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (name);
  1593.  
  1594.         fprintf (asmfile, "%s \"%s:T", ASM_STABS_OP,
  1595.              IDENTIFIER_POINTER (name));
  1596.         dbxout_type (type, 1, 0);
  1597.         dbxout_finish_symbol (NULL_TREE);
  1598.           }
  1599.  
  1600.         /* Output typedef name.  */
  1601.         fprintf (asmfile, "%s \"%s:", ASM_STABS_OP,
  1602.              IDENTIFIER_POINTER (DECL_NAME (decl)));
  1603.  
  1604.         /* Short cut way to output a tag also.  */
  1605.         if ((TREE_CODE (type) == RECORD_TYPE
  1606.          || TREE_CODE (type) == UNION_TYPE
  1607.          || TREE_CODE (type) == QUAL_UNION_TYPE)
  1608.         && TYPE_NAME (type) == decl)
  1609.           {
  1610.         if (use_gnu_debug_info_extensions && have_used_extensions)
  1611.           {
  1612.             putc ('T', asmfile);
  1613.             TREE_ASM_WRITTEN (TYPE_NAME (type)) = 1;
  1614.           }
  1615. #if 0 /* Now we generate the tag for this case up above.  */
  1616.         else
  1617.           tag_needed = 1;
  1618. #endif
  1619.           }
  1620.  
  1621.         putc ('t', asmfile);
  1622.         current_sym_code = DBX_TYPE_DECL_STABS_CODE;
  1623.  
  1624.         dbxout_type (type, 1, 0);
  1625.         dbxout_finish_symbol (decl);
  1626.         did_output = 1;
  1627.       }
  1628.  
  1629.     /* Don't output a tag if this is an incomplete type (TYPE_SIZE is
  1630.        zero).  This prevents the sun4 Sun OS 4.x dbx from crashing.  */ 
  1631.  
  1632.     if (tag_needed && TYPE_NAME (type) != 0 && TYPE_SIZE (type) != 0
  1633.         && !TREE_ASM_WRITTEN (TYPE_NAME (type)))
  1634.       {
  1635.         /* For a TYPE_DECL with no name, but the type has a name,
  1636.            output a tag.
  1637.            This is what represents `struct foo' with no typedef.  */
  1638.         /* In C++, the name of a type is the corresponding typedef.
  1639.            In C, it is an IDENTIFIER_NODE.  */
  1640.         tree name = TYPE_NAME (type);
  1641.         if (TREE_CODE (name) == TYPE_DECL)
  1642.           name = DECL_NAME (name);
  1643.  
  1644.         current_sym_code = DBX_TYPE_DECL_STABS_CODE;
  1645.         current_sym_value = 0;
  1646.         current_sym_addr = 0;
  1647.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (name);
  1648.  
  1649.         fprintf (asmfile, "%s \"%s:T", ASM_STABS_OP,
  1650.              IDENTIFIER_POINTER (name));
  1651.         dbxout_type (type, 1, 0);
  1652.         dbxout_finish_symbol (NULL_TREE);
  1653.         did_output = 1;
  1654.       }
  1655.  
  1656.     /* If an enum type has no name, it cannot be referred to,
  1657.        but we must output it anyway, since the enumeration constants
  1658.        can be referred to.  */
  1659.     if (!did_output && TREE_CODE (type) == ENUMERAL_TYPE)
  1660.       {
  1661.         current_sym_code = DBX_TYPE_DECL_STABS_CODE;
  1662.         current_sym_value = 0;
  1663.         current_sym_addr = 0;
  1664.         current_sym_nchars = 2;
  1665.  
  1666.         /* Some debuggers fail when given NULL names, so give this a
  1667.            harmless name of ` '.  */
  1668.         fprintf (asmfile, "%s \" :T", ASM_STABS_OP);
  1669.         dbxout_type (type, 1, 0);
  1670.         dbxout_finish_symbol (NULL_TREE);
  1671.       }
  1672.  
  1673.     /* Prevent duplicate output of a typedef.  */
  1674.     TREE_ASM_WRITTEN (decl) = 1;
  1675.     break;
  1676.       }
  1677.  
  1678.     case PARM_DECL:
  1679.       /* Parm decls go in their own separate chains
  1680.      and are output by dbxout_reg_parms and dbxout_parms.  */
  1681.       abort ();
  1682.  
  1683.     case RESULT_DECL:
  1684.       /* Named return value, treat like a VAR_DECL.  */
  1685.     case VAR_DECL:
  1686.       if (DECL_RTL (decl) == 0)
  1687.     return;
  1688.       /* Don't mention a variable that is external.
  1689.      Let the file that defines it describe it.  */
  1690.       if (DECL_EXTERNAL (decl))
  1691.     break;
  1692.  
  1693.       /* If the variable is really a constant
  1694.      and not written in memory, inform the debugger.  */
  1695.       if (TREE_STATIC (decl) && TREE_READONLY (decl)
  1696.       && DECL_INITIAL (decl) != 0
  1697.       && ! TREE_ASM_WRITTEN (decl)
  1698.       && (DECL_FIELD_CONTEXT (decl) == NULL_TREE
  1699.           || TREE_CODE (DECL_FIELD_CONTEXT (decl)) == BLOCK))
  1700.     {
  1701.       if (TREE_PUBLIC (decl) == 0)
  1702.         {
  1703.           /* The sun4 assembler does not grok this.  */
  1704.           char *name = IDENTIFIER_POINTER (DECL_NAME (decl));
  1705.           if (TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE
  1706.           || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
  1707.         {
  1708.           HOST_WIDE_INT ival = TREE_INT_CST_LOW (DECL_INITIAL (decl));
  1709. #ifdef DBX_OUTPUT_CONSTANT_SYMBOL
  1710.           DBX_OUTPUT_CONSTANT_SYMBOL (asmfile, name, ival);
  1711. #else
  1712.           fprintf (asmfile, "%s \"%s:c=i%d\",0x%x,0,0,0\n",
  1713.                ASM_STABS_OP, name, ival, N_LSYM);
  1714. #endif
  1715.           return;
  1716.         }
  1717.           else if (TREE_CODE (TREE_TYPE (decl)) == REAL_TYPE)
  1718.         {
  1719.           /* don't know how to do this yet.  */
  1720.         }
  1721.           break;
  1722.         }
  1723.       /* else it is something we handle like a normal variable.  */
  1724.     }
  1725.  
  1726.       DECL_RTL (decl) = eliminate_regs (DECL_RTL (decl), 0, NULL_RTX);
  1727. #ifdef LEAF_REG_REMAP
  1728.       if (leaf_function)
  1729.     leaf_renumber_regs_insn (DECL_RTL (decl));
  1730. #endif
  1731.  
  1732.       dbxout_symbol_location (decl, type, 0, DECL_RTL (decl));
  1733.     }
  1734. }
  1735.  
  1736. /* Output the stab for DECL, a VAR_DECL, RESULT_DECL or PARM_DECL.
  1737.    Add SUFFIX to its name, if SUFFIX is not 0.
  1738.    Describe the variable as residing in HOME
  1739.    (usually HOME is DECL_RTL (DECL), but not always).  */
  1740.  
  1741. static void
  1742. dbxout_symbol_location (decl, type, suffix, home)
  1743.      tree decl, type;
  1744.      char *suffix;
  1745.      rtx home;
  1746. {
  1747.   int letter = 0;
  1748.   int regno = -1;
  1749.  
  1750.   /* Don't mention a variable at all
  1751.      if it was completely optimized into nothingness.
  1752.      
  1753.      If the decl was from an inline function, then it's rtl
  1754.      is not identically the rtl that was used in this
  1755.      particular compilation.  */
  1756.   if (GET_CODE (home) == REG)
  1757.     {
  1758.       regno = REGNO (home);
  1759.       if (regno >= FIRST_PSEUDO_REGISTER)
  1760.     return;
  1761.     }
  1762.   else if (GET_CODE (home) == SUBREG)
  1763.     {
  1764.       rtx value = home;
  1765.       int offset = 0;
  1766.       while (GET_CODE (value) == SUBREG)
  1767.     {
  1768.       offset += SUBREG_WORD (value);
  1769.       value = SUBREG_REG (value);
  1770.     }
  1771.       if (GET_CODE (value) == REG)
  1772.     {
  1773.       regno = REGNO (value);
  1774.       if (regno >= FIRST_PSEUDO_REGISTER)
  1775.         return;
  1776.       regno += offset;
  1777.     }
  1778.       alter_subreg (home);
  1779.     }
  1780.  
  1781.   /* The kind-of-variable letter depends on where
  1782.      the variable is and on the scope of its name:
  1783.      G and N_GSYM for static storage and global scope,
  1784.      S for static storage and file scope,
  1785.      V for static storage and local scope,
  1786.      for those two, use N_LCSYM if data is in bss segment,
  1787.      N_STSYM if in data segment, N_FUN otherwise.
  1788.      (We used N_FUN originally, then changed to N_STSYM
  1789.      to please GDB.  However, it seems that confused ld.
  1790.      Now GDB has been fixed to like N_FUN, says Kingdon.)
  1791.      no letter at all, and N_LSYM, for auto variable,
  1792.      r and N_RSYM for register variable.  */
  1793.  
  1794.   if (GET_CODE (home) == MEM
  1795.       && GET_CODE (XEXP (home, 0)) == SYMBOL_REF)
  1796.     {
  1797.       if (TREE_PUBLIC (decl))
  1798.     {
  1799.       letter = 'G';
  1800.       current_sym_code = N_GSYM;
  1801.     }
  1802.       else
  1803.     {
  1804.       current_sym_addr = XEXP (home, 0);
  1805.  
  1806.       letter = decl_function_context (decl) ? 'V' : 'S';
  1807.  
  1808.       if (!DECL_INITIAL (decl))
  1809.         current_sym_code = N_LCSYM;
  1810.       else if (DECL_IN_TEXT_SECTION (decl))
  1811.         /* This is not quite right, but it's the closest
  1812.            of all the codes that Unix defines.  */
  1813.         current_sym_code = DBX_STATIC_CONST_VAR_CODE;
  1814.       else
  1815.         {
  1816.           /* Ultrix `as' seems to need this.  */
  1817. #ifdef DBX_STATIC_STAB_DATA_SECTION
  1818.           data_section ();
  1819. #endif
  1820.           current_sym_code = N_STSYM;
  1821.         }
  1822.     }
  1823.     }
  1824.   else if (regno >= 0)
  1825.     {
  1826.       letter = 'r';
  1827.       current_sym_code = N_RSYM;
  1828.       current_sym_value = DBX_REGISTER_NUMBER (regno);
  1829.     }
  1830.   else if (GET_CODE (home) == MEM
  1831.        && (GET_CODE (XEXP (home, 0)) == MEM
  1832.            || (GET_CODE (XEXP (home, 0)) == REG
  1833.            && REGNO (XEXP (home, 0)) != HARD_FRAME_POINTER_REGNUM)))
  1834.     /* If the value is indirect by memory or by a register
  1835.        that isn't the frame pointer
  1836.        then it means the object is variable-sized and address through
  1837.        that register or stack slot.  DBX has no way to represent this
  1838.        so all we can do is output the variable as a pointer.
  1839.        If it's not a parameter, ignore it.
  1840.        (VAR_DECLs like this can be made by integrate.c.)  */
  1841.     {
  1842.       if (GET_CODE (XEXP (home, 0)) == REG)
  1843.     {
  1844.       letter = 'r';
  1845.       current_sym_code = N_RSYM;
  1846.       current_sym_value = DBX_REGISTER_NUMBER (REGNO (XEXP (home, 0)));
  1847.     }
  1848.       else
  1849.     {
  1850.       current_sym_code = N_LSYM;
  1851.       /* RTL looks like (MEM (MEM (PLUS (REG...) (CONST_INT...)))).
  1852.          We want the value of that CONST_INT.  */
  1853.       current_sym_value
  1854.         = DEBUGGER_AUTO_OFFSET (XEXP (XEXP (home, 0), 0));
  1855.     }
  1856.  
  1857.       /* Effectively do build_pointer_type, but don't cache this type,
  1858.      since it might be temporary whereas the type it points to
  1859.      might have been saved for inlining.  */
  1860.       /* Don't use REFERENCE_TYPE because dbx can't handle that.  */
  1861.       type = make_node (POINTER_TYPE);
  1862.       TREE_TYPE (type) = TREE_TYPE (decl);
  1863.     }
  1864.   else if (GET_CODE (home) == MEM
  1865.        && GET_CODE (XEXP (home, 0)) == REG)
  1866.     {
  1867.       current_sym_code = N_LSYM;
  1868.       current_sym_value = DEBUGGER_AUTO_OFFSET (XEXP (home, 0));
  1869.     }
  1870.   else if (GET_CODE (home) == MEM
  1871.        && GET_CODE (XEXP (home, 0)) == PLUS
  1872.        && GET_CODE (XEXP (XEXP (home, 0), 1)) == CONST_INT)
  1873.     {
  1874.       current_sym_code = N_LSYM;
  1875.       /* RTL looks like (MEM (PLUS (REG...) (CONST_INT...)))
  1876.      We want the value of that CONST_INT.  */
  1877.       current_sym_value = DEBUGGER_AUTO_OFFSET (XEXP (home, 0));
  1878.     }
  1879.   else if (GET_CODE (home) == MEM
  1880.        && GET_CODE (XEXP (home, 0)) == CONST)
  1881.     {
  1882.       /* Handle an obscure case which can arise when optimizing and
  1883.      when there are few available registers.  (This is *always*
  1884.      the case for i386/i486 targets).  The RTL looks like
  1885.      (MEM (CONST ...)) even though this variable is a local `auto'
  1886.      or a local `register' variable.  In effect, what has happened
  1887.      is that the reload pass has seen that all assignments and
  1888.      references for one such a local variable can be replaced by
  1889.      equivalent assignments and references to some static storage
  1890.      variable, thereby avoiding the need for a register.  In such
  1891.      cases we're forced to lie to debuggers and tell them that
  1892.      this variable was itself `static'.  */
  1893.       current_sym_code = N_LCSYM;
  1894.       letter = 'V';
  1895.       current_sym_addr = XEXP (XEXP (home, 0), 0);
  1896.     }
  1897.   else if (GET_CODE (home) == CONCAT)
  1898.     {
  1899.       tree subtype = TREE_TYPE (type);
  1900.  
  1901.       /* If the variable's storage is in two parts,
  1902.      output each as a separate stab with a modified name.  */
  1903.       if (WORDS_BIG_ENDIAN)
  1904.     dbxout_symbol_location (decl, subtype, "$imag", XEXP (home, 0));
  1905.       else
  1906.     dbxout_symbol_location (decl, subtype, "$real", XEXP (home, 0));
  1907.  
  1908.       /* Cast avoids warning in old compilers.  */
  1909.       current_sym_code = (STAB_CODE_TYPE) 0;
  1910.       current_sym_value = 0;
  1911.       current_sym_addr = 0;
  1912.       dbxout_prepare_symbol (decl);
  1913.  
  1914.       if (WORDS_BIG_ENDIAN)
  1915.     dbxout_symbol_location (decl, subtype, "$real", XEXP (home, 1));
  1916.       else
  1917.     dbxout_symbol_location (decl, subtype, "$imag", XEXP (home, 1));
  1918.       return;
  1919.     }
  1920.   else
  1921.     /* Address might be a MEM, when DECL is a variable-sized object.
  1922.        Or it might be const0_rtx, meaning previous passes
  1923.        want us to ignore this variable.  */
  1924.     return;
  1925.  
  1926.   /* Ok, start a symtab entry and output the variable name.  */
  1927.   FORCE_TEXT;
  1928.  
  1929. #ifdef DBX_STATIC_BLOCK_START
  1930.   DBX_STATIC_BLOCK_START (asmfile, current_sym_code);
  1931. #endif
  1932.  
  1933.   dbxout_symbol_name (decl, suffix, letter);
  1934.   dbxout_type (type, 0, 0);
  1935.   dbxout_finish_symbol (decl);
  1936.  
  1937. #ifdef DBX_STATIC_BLOCK_END
  1938.   DBX_STATIC_BLOCK_END (asmfile, current_sym_code);
  1939. #endif
  1940. }
  1941.  
  1942. /* Output the symbol name of DECL for a stabs, with suffix SUFFIX.
  1943.    Then output LETTER to indicate the kind of location the symbol has.  */
  1944.  
  1945. static void
  1946. dbxout_symbol_name (decl, suffix, letter)
  1947.      tree decl;
  1948.      char *suffix;
  1949.      int letter;
  1950. {
  1951.   /* One slight hitch: if this is a VAR_DECL which is a static
  1952.      class member, we must put out the mangled name instead of the
  1953.      DECL_NAME.  */
  1954.  
  1955.   char *name;
  1956.   /* Note also that static member (variable) names DO NOT begin
  1957.      with underscores in .stabs directives.  */
  1958.   if (DECL_LANG_SPECIFIC (decl))
  1959.     name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
  1960.   else
  1961.     name = IDENTIFIER_POINTER (DECL_NAME (decl));
  1962.   if (name == 0)
  1963.     name = "(anon)";
  1964.   fprintf (asmfile, "%s \"%s%s:", ASM_STABS_OP, name,
  1965.        (suffix ? suffix : ""));
  1966.  
  1967.   if (letter) putc (letter, asmfile);
  1968. }
  1969.  
  1970. static void
  1971. dbxout_prepare_symbol (decl)
  1972.      tree decl;
  1973. {
  1974. #ifdef WINNING_GDB
  1975.   char *filename = DECL_SOURCE_FILE (decl);
  1976.  
  1977.   dbxout_source_file (asmfile, filename);
  1978. #endif
  1979. }
  1980.  
  1981. static void
  1982. dbxout_finish_symbol (sym)
  1983.      tree sym;
  1984. {
  1985. #ifdef DBX_FINISH_SYMBOL
  1986.   DBX_FINISH_SYMBOL (sym);
  1987. #else
  1988.   int line = 0;
  1989.   if (use_gnu_debug_info_extensions && sym != 0)
  1990.     line = DECL_SOURCE_LINE (sym);
  1991.  
  1992.   fprintf (asmfile, "\",%d,0,%d,", current_sym_code, line);
  1993.   if (current_sym_addr)
  1994.     output_addr_const (asmfile, current_sym_addr);
  1995.   else
  1996.     fprintf (asmfile, "%d", current_sym_value);
  1997.   putc ('\n', asmfile);
  1998. #endif
  1999. }
  2000.  
  2001. /* Output definitions of all the decls in a chain.  */
  2002.  
  2003. void
  2004. dbxout_syms (syms)
  2005.      tree syms;
  2006. {
  2007.   while (syms)
  2008.     {
  2009.       dbxout_symbol (syms, 1);
  2010.       syms = TREE_CHAIN (syms);
  2011.     }
  2012. }
  2013.  
  2014. /* The following two functions output definitions of function parameters.
  2015.    Each parameter gets a definition locating it in the parameter list.
  2016.    Each parameter that is a register variable gets a second definition
  2017.    locating it in the register.
  2018.  
  2019.    Printing or argument lists in gdb uses the definitions that
  2020.    locate in the parameter list.  But reference to the variable in
  2021.    expressions uses preferentially the definition as a register.  */
  2022.  
  2023. /* Output definitions, referring to storage in the parmlist,
  2024.    of all the parms in PARMS, which is a chain of PARM_DECL nodes.  */
  2025.  
  2026. void
  2027. dbxout_parms (parms)
  2028.      tree parms;
  2029. {
  2030.   for (; parms; parms = TREE_CHAIN (parms))
  2031.     if (DECL_NAME (parms) && TREE_TYPE (parms) != error_mark_node)
  2032.       {
  2033.     dbxout_prepare_symbol (parms);
  2034.  
  2035.     /* Perform any necessary register eliminations on the parameter's rtl,
  2036.        so that the debugging output will be accurate.  */
  2037.     DECL_INCOMING_RTL (parms)
  2038.       = eliminate_regs (DECL_INCOMING_RTL (parms), 0, NULL_RTX);
  2039.     DECL_RTL (parms) = eliminate_regs (DECL_RTL (parms), 0, NULL_RTX);
  2040. #ifdef LEAF_REG_REMAP
  2041.     if (leaf_function)
  2042.       {
  2043.         leaf_renumber_regs_insn (DECL_INCOMING_RTL (parms));
  2044.         leaf_renumber_regs_insn (DECL_RTL (parms));
  2045.       }
  2046. #endif
  2047.  
  2048.     if (PARM_PASSED_IN_MEMORY (parms))
  2049.       {
  2050.         rtx addr = XEXP (DECL_INCOMING_RTL (parms), 0);
  2051.  
  2052.         /* ??? Here we assume that the parm address is indexed
  2053.            off the frame pointer or arg pointer.
  2054.            If that is not true, we produce meaningless results,
  2055.            but do not crash.  */
  2056.         if (GET_CODE (addr) == PLUS
  2057.         && GET_CODE (XEXP (addr, 1)) == CONST_INT)
  2058.           current_sym_value = INTVAL (XEXP (addr, 1));
  2059.         else
  2060.           current_sym_value = 0;
  2061.  
  2062.         current_sym_code = N_PSYM;
  2063.         current_sym_addr = 0;
  2064.  
  2065.         FORCE_TEXT;
  2066.         if (DECL_NAME (parms))
  2067.           {
  2068.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  2069.  
  2070.         fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP,
  2071.              IDENTIFIER_POINTER (DECL_NAME (parms)),
  2072.              DBX_MEMPARM_STABS_LETTER);
  2073.           }
  2074.         else
  2075.           {
  2076.         current_sym_nchars = 8;
  2077.         fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP,
  2078.              DBX_MEMPARM_STABS_LETTER);
  2079.           }
  2080.  
  2081.         if (GET_CODE (DECL_RTL (parms)) == REG
  2082.         && REGNO (DECL_RTL (parms)) >= 0
  2083.         && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
  2084.           dbxout_type (DECL_ARG_TYPE (parms), 0, 0);
  2085.         else
  2086.           {
  2087.         int original_value = current_sym_value;
  2088.  
  2089.         /* This is the case where the parm is passed as an int or double
  2090.            and it is converted to a char, short or float and stored back
  2091.            in the parmlist.  In this case, describe the parm
  2092.            with the variable's declared type, and adjust the address
  2093.            if the least significant bytes (which we are using) are not
  2094.            the first ones.  */
  2095. #if BYTES_BIG_ENDIAN
  2096.         if (TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  2097.           current_sym_value += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  2098.                     - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  2099. #endif
  2100.  
  2101.         if (GET_CODE (DECL_RTL (parms)) == MEM
  2102.             && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  2103.             && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT
  2104.             && INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == current_sym_value)
  2105.           dbxout_type (TREE_TYPE (parms), 0, 0);
  2106.         else
  2107.           {
  2108.             current_sym_value = original_value;
  2109.             dbxout_type (DECL_ARG_TYPE (parms), 0, 0);
  2110.           }
  2111.           }
  2112.         current_sym_value = DEBUGGER_ARG_OFFSET (current_sym_value, addr);
  2113.         dbxout_finish_symbol (parms);
  2114.       }
  2115.     else if (GET_CODE (DECL_RTL (parms)) == REG)
  2116.       {
  2117.         rtx best_rtl;
  2118.         char regparm_letter;
  2119.         tree parm_type;
  2120.         /* Parm passed in registers and lives in registers or nowhere.  */
  2121.  
  2122.         current_sym_code = DBX_REGPARM_STABS_CODE;
  2123.         regparm_letter = DBX_REGPARM_STABS_LETTER;
  2124.         current_sym_addr = 0;
  2125.  
  2126.         /* If parm lives in a register, use that register;
  2127.            pretend the parm was passed there.  It would be more consistent
  2128.            to describe the register where the parm was passed,
  2129.            but in practice that register usually holds something else.
  2130.  
  2131.            If we use DECL_RTL, then we must use the declared type of
  2132.            the variable, not the type that it arrived in.  */
  2133.         if (REGNO (DECL_RTL (parms)) >= 0
  2134.         && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
  2135.           {
  2136.         best_rtl = DECL_RTL (parms);
  2137.         parm_type = TREE_TYPE (parms);
  2138.           }
  2139.         /* If the parm lives nowhere,
  2140.            use the register where it was passed.  */
  2141.         else
  2142.           {
  2143.         best_rtl = DECL_INCOMING_RTL (parms);
  2144.         parm_type = DECL_ARG_TYPE (parms);
  2145.           }
  2146.         current_sym_value = DBX_REGISTER_NUMBER (REGNO (best_rtl));
  2147.  
  2148.         FORCE_TEXT;
  2149.         if (DECL_NAME (parms))
  2150.           {
  2151.         current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
  2152.         fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP,
  2153.              IDENTIFIER_POINTER (DECL_NAME (parms)),
  2154.              regparm_letter);
  2155.           }
  2156.         else
  2157.           {
  2158.         current_sym_nchars = 8;
  2159.         fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP,
  2160.              regparm_letter);
  2161.           }
  2162.  
  2163.         dbxout_type (parm_type, 0, 0);
  2164.         dbxout_finish_symbol (parms);
  2165.       }
  2166.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  2167.          && GET_CODE (XEXP (DECL_RTL (parms), 0)) == REG
  2168.          && REGNO (XEXP (DECL_RTL (parms), 0)) != HARD_FRAME_POINTER_REGNUM
  2169.          && REGNO (XEXP (DECL_RTL (parms), 0)) != STACK_POINTER_REGNUM
  2170. #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
  2171.          && REGNO (XEXP (DECL_RTL (parms), 0)) != ARG_POINTER_REGNUM
  2172. #endif
  2173.          )
  2174.       {
  2175.         /* Parm was passed via invisible reference.
  2176.            That is, its address was passed in a register.
  2177.            Output it as if it lived in that register.
  2178.            The debugger will know from the type
  2179.            that it was actually passed by invisible reference.  */
  2180.  
  2181.         char regparm_letter;
  2182.         /* Parm passed in registers and lives in registers or nowhere.  */
  2183.  
  2184.         current_sym_code = DBX_REGPARM_STABS_CODE;
  2185.         regparm_letter = DBX_REGPARM_STABS_LETTER;
  2186.  
  2187.         /* DECL_RTL looks like (MEM (REG...).  Get the register number.  */
  2188.         current_sym_value = REGNO (XEXP (DECL_RTL (parms), 0));
  2189.         current_sym_addr = 0;
  2190.  
  2191.         FORCE_TEXT;
  2192.         if (DECL_NAME (parms))
  2193.           {
  2194.         current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
  2195.  
  2196.         fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP,
  2197.              IDENTIFIER_POINTER (DECL_NAME (parms)),
  2198.              DBX_REGPARM_STABS_LETTER);
  2199.           }
  2200.         else
  2201.           {
  2202.         current_sym_nchars = 8;
  2203.         fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP,
  2204.              DBX_REGPARM_STABS_LETTER);
  2205.           }
  2206.  
  2207.         dbxout_type (TREE_TYPE (parms), 0, 0);
  2208.         dbxout_finish_symbol (parms);
  2209.       }
  2210.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  2211.          && XEXP (DECL_RTL (parms), 0) != const0_rtx
  2212.          /* ??? A constant address for a parm can happen
  2213.             when the reg it lives in is equiv to a constant in memory.
  2214.             Should make this not happen, after 2.4.  */
  2215.          && ! CONSTANT_P (XEXP (DECL_RTL (parms), 0)))
  2216.       {
  2217.         /* Parm was passed in registers but lives on the stack.  */
  2218.  
  2219.         current_sym_code = N_PSYM;
  2220.         /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))),
  2221.            in which case we want the value of that CONST_INT,
  2222.            or (MEM (REG ...)) or (MEM (MEM ...)),
  2223.            in which case we use a value of zero.  */
  2224.         if (GET_CODE (XEXP (DECL_RTL (parms), 0)) == REG
  2225.         || GET_CODE (XEXP (DECL_RTL (parms), 0)) == MEM)
  2226.           current_sym_value = 0;
  2227.         else
  2228.           current_sym_value = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1));
  2229.         current_sym_addr = 0;
  2230.  
  2231.         FORCE_TEXT;
  2232.         if (DECL_NAME (parms))
  2233.           {
  2234.         current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
  2235.  
  2236.         fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP,
  2237.              IDENTIFIER_POINTER (DECL_NAME (parms)),
  2238.              DBX_MEMPARM_STABS_LETTER);
  2239.           }
  2240.         else
  2241.           {
  2242.         current_sym_nchars = 8;
  2243.         fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP,
  2244.         DBX_MEMPARM_STABS_LETTER);
  2245.           }
  2246.  
  2247.         current_sym_value
  2248.           = DEBUGGER_ARG_OFFSET (current_sym_value,
  2249.                      XEXP (DECL_RTL (parms), 0));
  2250.         dbxout_type (TREE_TYPE (parms), 0, 0);
  2251.         dbxout_finish_symbol (parms);
  2252.       }
  2253.       }
  2254. }
  2255.  
  2256. /* Output definitions for the places where parms live during the function,
  2257.    when different from where they were passed, when the parms were passed
  2258.    in memory.
  2259.  
  2260.    It is not useful to do this for parms passed in registers
  2261.    that live during the function in different registers, because it is
  2262.    impossible to look in the passed register for the passed value,
  2263.    so we use the within-the-function register to begin with.
  2264.  
  2265.    PARMS is a chain of PARM_DECL nodes.  */
  2266.  
  2267. void
  2268. dbxout_reg_parms (parms)
  2269.      tree parms;
  2270. {
  2271.   for (; parms; parms = TREE_CHAIN (parms))
  2272.     if (DECL_NAME (parms))
  2273.       {
  2274.     dbxout_prepare_symbol (parms);
  2275.  
  2276.     /* Report parms that live in registers during the function
  2277.        but were passed in memory.  */
  2278.     if (GET_CODE (DECL_RTL (parms)) == REG
  2279.         && REGNO (DECL_RTL (parms)) >= 0
  2280.         && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER
  2281.         && PARM_PASSED_IN_MEMORY (parms))
  2282.       dbxout_symbol_location (parms, TREE_TYPE (parms),
  2283.                   0, DECL_RTL (parms));
  2284.     else if (GET_CODE (DECL_RTL (parms)) == CONCAT
  2285.          && PARM_PASSED_IN_MEMORY (parms))
  2286.       dbxout_symbol_location (parms, TREE_TYPE (parms),
  2287.                   0, DECL_RTL (parms));
  2288.     /* Report parms that live in memory but not where they were passed.  */
  2289.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  2290.          && GET_CODE (XEXP (DECL_RTL (parms), 0)) == PLUS
  2291.          && GET_CODE (XEXP (XEXP (DECL_RTL (parms), 0), 1)) == CONST_INT
  2292.          && PARM_PASSED_IN_MEMORY (parms)
  2293.          && ! rtx_equal_p (DECL_RTL (parms), DECL_INCOMING_RTL (parms)))
  2294.       {
  2295. #if 0 /* ??? It is not clear yet what should replace this.  */
  2296.         int offset = DECL_OFFSET (parms) / BITS_PER_UNIT;
  2297.         /* A parm declared char is really passed as an int,
  2298.            so it occupies the least significant bytes.
  2299.            On a big-endian machine those are not the low-numbered ones.  */
  2300. #if BYTES_BIG_ENDIAN
  2301.         if (offset != -1 && TREE_TYPE (parms) != DECL_ARG_TYPE (parms))
  2302.           offset += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parms)))
  2303.              - GET_MODE_SIZE (GET_MODE (DECL_RTL (parms))));
  2304. #endif
  2305.         if (INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1)) != offset) {...}
  2306. #endif
  2307.         dbxout_symbol_location (parms, TREE_TYPE (parms),
  2308.                     0, DECL_RTL (parms));
  2309.       }
  2310. #if 0
  2311.     else if (GET_CODE (DECL_RTL (parms)) == MEM
  2312.          && GET_CODE (XEXP (DECL_RTL (parms), 0)) == REG)
  2313.       {
  2314.         /* Parm was passed via invisible reference.
  2315.            That is, its address was passed in a register.
  2316.            Output it as if it lived in that register.
  2317.            The debugger will know from the type
  2318.            that it was actually passed by invisible reference.  */
  2319.  
  2320.         current_sym_code = N_RSYM;
  2321.  
  2322.         /* DECL_RTL looks like (MEM (REG...).  Get the register number.  */
  2323.         current_sym_value = REGNO (XEXP (DECL_RTL (parms), 0));
  2324.         current_sym_addr = 0;
  2325.  
  2326.         FORCE_TEXT;
  2327.         if (DECL_NAME (parms))
  2328.           {
  2329.         current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
  2330.  
  2331.         fprintf (asmfile, "%s \"%s:r", ASM_STABS_OP,
  2332.              IDENTIFIER_POINTER (DECL_NAME (parms)));
  2333.           }
  2334.         else
  2335.           {
  2336.         current_sym_nchars = 8;
  2337.         fprintf (asmfile, "%s \"(anon):r", ASM_STABS_OP);
  2338.           }
  2339.  
  2340.         dbxout_type (TREE_TYPE (parms), 0, 0);
  2341.         dbxout_finish_symbol (parms);
  2342.       }
  2343. #endif
  2344.       }
  2345. }
  2346.  
  2347. /* Given a chain of ..._TYPE nodes (as come in a parameter list),
  2348.    output definitions of those names, in raw form */
  2349.  
  2350. void
  2351. dbxout_args (args)
  2352.      tree args;
  2353. {
  2354.   while (args)
  2355.     {
  2356.       putc (',', asmfile);
  2357.       dbxout_type (TREE_VALUE (args), 0, 0);
  2358.       CHARS (1);
  2359.       args = TREE_CHAIN (args);
  2360.     }
  2361. }
  2362.  
  2363. /* Given a chain of ..._TYPE nodes,
  2364.    find those which have typedef names and output those names.
  2365.    This is to ensure those types get output.  */
  2366.  
  2367. void
  2368. dbxout_types (types)
  2369.      register tree types;
  2370. {
  2371.   while (types)
  2372.     {
  2373.       if (TYPE_NAME (types)
  2374.       && TREE_CODE (TYPE_NAME (types)) == TYPE_DECL
  2375.       && ! TREE_ASM_WRITTEN (TYPE_NAME (types)))
  2376.     dbxout_symbol (TYPE_NAME (types), 1);
  2377.       types = TREE_CHAIN (types);
  2378.     }
  2379. }
  2380.  
  2381. /* Output everything about a symbol block (a BLOCK node
  2382.    that represents a scope level),
  2383.    including recursive output of contained blocks.
  2384.  
  2385.    BLOCK is the BLOCK node.
  2386.    DEPTH is its depth within containing symbol blocks.
  2387.    ARGS is usually zero; but for the outermost block of the
  2388.    body of a function, it is a chain of PARM_DECLs for the function parameters.
  2389.    We output definitions of all the register parms
  2390.    as if they were local variables of that block.
  2391.  
  2392.    If -g1 was used, we count blocks just the same, but output nothing
  2393.    except for the outermost block.
  2394.  
  2395.    Actually, BLOCK may be several blocks chained together.
  2396.    We handle them all in sequence.  */
  2397.  
  2398. static void
  2399. dbxout_block (block, depth, args)
  2400.      register tree block;
  2401.      int depth;
  2402.      tree args;
  2403. {
  2404.   int blocknum;
  2405.  
  2406.   while (block)
  2407.     {
  2408.       /* Ignore blocks never expanded or otherwise marked as real.  */
  2409.       if (TREE_USED (block))
  2410.     {
  2411. #ifndef DBX_LBRAC_FIRST
  2412.       /* In dbx format, the syms of a block come before the N_LBRAC.  */
  2413.       if (debug_info_level != DINFO_LEVEL_TERSE || depth == 0)
  2414.         dbxout_syms (BLOCK_VARS (block));
  2415.       if (args)
  2416.         dbxout_reg_parms (args);
  2417. #endif
  2418.  
  2419.       /* Now output an N_LBRAC symbol to represent the beginning of
  2420.          the block.  Use the block's tree-walk order to generate
  2421.          the assembler symbols LBBn and LBEn
  2422.          that final will define around the code in this block.  */
  2423.       if (depth > 0 && debug_info_level != DINFO_LEVEL_TERSE)
  2424.         {
  2425.           char buf[20];
  2426.           blocknum = next_block_number++;
  2427.           ASM_GENERATE_INTERNAL_LABEL (buf, "LBB", blocknum);
  2428.  
  2429.           if (BLOCK_HANDLER_BLOCK (block))
  2430.         {
  2431.           /* A catch block.  Must precede N_LBRAC.  */
  2432.           tree decl = BLOCK_VARS (block);
  2433.           while (decl)
  2434.             {
  2435. #ifdef DBX_OUTPUT_CATCH
  2436.               DBX_OUTPUT_CATCH (asmfile, decl, buf);
  2437. #else
  2438.               fprintf (asmfile, "%s \"%s:C1\",%d,0,0,", ASM_STABS_OP,
  2439.                    IDENTIFIER_POINTER (DECL_NAME (decl)), N_CATCH);
  2440.               assemble_name (asmfile, buf);
  2441.               fprintf (asmfile, "\n");
  2442. #endif
  2443.               decl = TREE_CHAIN (decl);
  2444.             }
  2445.         }
  2446.  
  2447. #ifdef DBX_OUTPUT_LBRAC
  2448.           DBX_OUTPUT_LBRAC (asmfile, buf);
  2449. #else
  2450.           fprintf (asmfile, "%s %d,0,0,", ASM_STABN_OP, N_LBRAC);
  2451.           assemble_name (asmfile, buf);
  2452. #if DBX_BLOCKS_FUNCTION_RELATIVE
  2453.           fputc ('-', asmfile);
  2454.           assemble_name (asmfile, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
  2455. #endif
  2456.           fprintf (asmfile, "\n");
  2457. #endif
  2458.         }
  2459.       else if (depth > 0)
  2460.         /* Count blocks the same way regardless of debug_info_level.  */
  2461.         next_block_number++;
  2462.  
  2463. #ifdef DBX_LBRAC_FIRST
  2464.       /* On some weird machines, the syms of a block
  2465.          come after the N_LBRAC.  */
  2466.       if (debug_info_level != DINFO_LEVEL_TERSE || depth == 0)
  2467.         dbxout_syms (BLOCK_VARS (block));
  2468.       if (args)
  2469.         dbxout_reg_parms (args);
  2470. #endif
  2471.  
  2472.       /* Output the subblocks.  */
  2473.       dbxout_block (BLOCK_SUBBLOCKS (block), depth + 1, NULL_TREE);
  2474.  
  2475.       /* Refer to the marker for the end of the block.  */
  2476.       if (depth > 0 && debug_info_level != DINFO_LEVEL_TERSE)
  2477.         {
  2478.           char buf[20];
  2479.           ASM_GENERATE_INTERNAL_LABEL (buf, "LBE", blocknum);
  2480. #ifdef DBX_OUTPUT_RBRAC
  2481.           DBX_OUTPUT_RBRAC (asmfile, buf);
  2482. #else
  2483.           fprintf (asmfile, "%s %d,0,0,", ASM_STABN_OP, N_RBRAC);
  2484.           assemble_name (asmfile, buf);
  2485. #if DBX_BLOCKS_FUNCTION_RELATIVE
  2486.           fputc ('-', asmfile);
  2487.           assemble_name (asmfile, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
  2488. #endif
  2489.           fprintf (asmfile, "\n");
  2490. #endif
  2491.         }
  2492.     }
  2493.       block = BLOCK_CHAIN (block);
  2494.     }
  2495. }
  2496.  
  2497. /* Output the information about a function and its arguments and result.
  2498.    Usually this follows the function's code,
  2499.    but on some systems, it comes before.  */
  2500.  
  2501. static void
  2502. dbxout_really_begin_function (decl)
  2503.      tree decl;
  2504. {
  2505.   dbxout_symbol (decl, 0);
  2506.   dbxout_parms (DECL_ARGUMENTS (decl));
  2507.   if (DECL_NAME (DECL_RESULT (decl)) != 0)
  2508.     dbxout_symbol (DECL_RESULT (decl), 1);
  2509. }
  2510.  
  2511. /* Called at beginning of output of function definition.  */
  2512.  
  2513. void
  2514. dbxout_begin_function (decl)
  2515.      tree decl;
  2516. {
  2517. #ifdef DBX_FUNCTION_FIRST
  2518.   dbxout_really_begin_function (decl);
  2519. #endif
  2520. }
  2521.  
  2522. /* Output dbx data for a function definition.
  2523.    This includes a definition of the function name itself (a symbol),
  2524.    definitions of the parameters (locating them in the parameter list)
  2525.    and then output the block that makes up the function's body
  2526.    (including all the auto variables of the function).  */
  2527.  
  2528. void
  2529. dbxout_function (decl)
  2530.      tree decl;
  2531. {
  2532. #ifndef DBX_FUNCTION_FIRST
  2533.   dbxout_really_begin_function (decl);
  2534. #endif
  2535.   dbxout_block (DECL_INITIAL (decl), 0, DECL_ARGUMENTS (decl));
  2536. #ifdef DBX_OUTPUT_FUNCTION_END
  2537.   DBX_OUTPUT_FUNCTION_END (asmfile, decl);
  2538. #endif
  2539. }
  2540. #endif /* DBX_DEBUGGING_INFO */
  2541.